using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_order_detail")] [Serializable] public class GOrderDetail : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_id")] [DisplayName("排序单编号")] public int OrderId { get; set; } [Column("tray_seq")] [DisplayName(" ")] public int? TraySeq { get; set; } [Column("tray_no")] [DisplayName(" ")] public string TrayNo { get; set; } [Column("tray_flag")] [DisplayName(" ")] public int? TrayFlag { get; set; } [Column("status")] [DisplayName("匹配状态(-1=匹配错误,0=未匹配,1=匹配成功,2=已释放,3=已放空)")] public int Status { get; set; } [Column("part_type")] [DisplayName(" ")] public string PartType { get; set; } [Column("cust_line_no")] [DisplayName(" ")] public string CustLineNo { get; set; } [Column("print_seq")] [DisplayName(" ")] public string PrintSeq { get; set; } [Column("on_line_time")] [DisplayName(" ")] public string OnLineTime { get; set; } [Column("ship_status")] [DisplayName(" ")] public int? ShipStatus { get; set; } } }