using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_wo_picklist_detail")] [Serializable] public class GWoPicklistDetail : BaseEntity { [Column("workorder")] [DisplayName(" ")] public string Workorder { get; set; } [Column("carton_no")] [DisplayName(" ")] public string CartonNo { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("src_locate_id")] [DisplayName(" ")] public int SrcLocateId { get; set; } [Column("dest_locate_id")] [DisplayName(" ")] public int DestLocateId { get; set; } [Column("src_wh_code")] [DisplayName(" ")] public string SrcWhCode { get; set; } [Column("dest_wh_code")] [DisplayName(" ")] public string DestWhCode { get; set; } [Column("qty")] [DisplayName(" ")] public decimal Qty { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }