using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_order_message_detail")] [Serializable] public class GOrderMessageDetail : BaseEntity { [Column("master_guid")] [DisplayName("主表的 guid")] public string MasterGuid { get; set; } [Column("cust_seq")] [DisplayName("客户号")] public string CustSeq { get; set; } [Column("part_no")] [DisplayName("零件号")] public string PartNo { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }