using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_cspart_detail")] [Serializable] public class GCspartDetail : BaseEntity { [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("carton_type")] [DisplayName(" ")] public string CartonType { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("item_part_no")] [DisplayName(" ")] public string ItemPartNo { get; set; } [Column("carton_no")] [DisplayName(" ")] public string CartonNo { get; set; } [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [Column("ship_qty")] [DisplayName(" ")] public int ShipQty { get; set; } [Column("lot_no")] [DisplayName(" ")] public string LotNo { get; set; } [Column("locate_id")] [DisplayName(" ")] public int LocateId { get; set; } [Column("erp_warehouse")] [DisplayName(" ")] public string ErpWarehouse { get; set; } [Column("unit")] [DisplayName(" ")] public string Unit { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }