using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_allocate_ht_listDetail")] [Serializable] public class GAllocateHtListdetail : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("type_code")] [DisplayName(" ")] public string TypeCode { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("carton_no")] [DisplayName(" ")] public string CartonNo { get; set; } [Column("lot_no")] [DisplayName(" ")] public string LotNo { get; set; } [Column("group_no")] [DisplayName(" ")] public string GroupNo { get; set; } [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [Column("Box_qty")] [DisplayName(" ")] public int BoxQty { get; set; } [Column("factory_id")] [DisplayName(" ")] public int FactoryId { get; set; } [Column("locate_id")] [DisplayName(" ")] public int LocateId { get; set; } [Column("default_box_qty")] [DisplayName(" ")] public int DefaultBoxQty { get; set; } [Column("ship_no")] [DisplayName(" ")] public string ShipNo { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("ref_no")] [DisplayName(" ")] public string RefNo { get; set; } [Column("type")] [DisplayName(" ")] public string Type { get; set; } } }