using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_mes2wms_items")] [Serializable] public class GMes2wmsItems : BaseEntity { [Column("process_id")] [DisplayName(" ")] public int ProcessId { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("bom_version")] [DisplayName(" ")] public string BomVersion { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("qty")] [DisplayName(" ")] public decimal Qty { get; set; } [Column("item_part_no")] [DisplayName(" ")] public string ItemPartNo { get; set; } [Column("item_qty")] [DisplayName(" ")] public decimal ItemQty { get; set; } [Column("unit")] [DisplayName(" ")] public string Unit { get; set; } [Column("status")] [DisplayName(" ")] public int Status { get; set; } [Column("vendor_code")] [DisplayName(" ")] public string VendorCode { get; set; } [Column("gr_locate")] [DisplayName(" ")] public string GrLocate { get; set; } [Column("pick_type")] [DisplayName(" ")] public string PickType { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }