using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_receive_report_detail")] [Serializable] public class GReceiveReportDetail : BaseEntity { [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("plan_qty")] [DisplayName(" ")] public int PlanQty { get; set; } [Column("rec_qty")] [DisplayName(" ")] public int RecQty { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }