You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
978 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_order_message")]
[Serializable]
public class GOrderMessage : BaseEntity
{
[Column("sim_carno")]
[DisplayName("客户车号的后6位")]
public string SimCarno { get; set; }
[Column("cust_carno")]
[DisplayName("客户车号")]
public string CustCarno { get; set; }
[Column("cust_seq")]
[DisplayName("客户号")]
public string CustSeq { get; set; }
[Column("cust_lineno")]
[DisplayName("客户产线")]
public string CustLineno { get; set; }
[Column("remark")]
[DisplayName("问题描述")]
public string Remark { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}