using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_qc_detail")] [Serializable] public class WmsQcDetail : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [Column("carton_no")] [DisplayName(" ")] public string CartonNo { get; set; } [Column("lot_no")] [DisplayName(" ")] public string LotNo { get; set; } [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [Column("nc_qty")] [DisplayName(" ")] public int NcQty { get; set; } [Column("item_status")] [DisplayName(" ")] public string ItemStatus { get; set; } [Column("remark")] [DisplayName(" ")] public string Remark { get; set; } #region [Column("vendor_id")] [DisplayName(" ")] public int VendorId { get; set; } [Column("vendor_code")] [DisplayName(" ")] public string VendorCode { get; set; } [Column("order_status")] [DisplayName(" ")] public string OrderStatus { get; set; } [Column("ref_order_no")] [DisplayName(" ")] public string RefOrderNo { get; set; } [Column("part_spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } #endregion } }