using System; using System.ComponentModel.DataAnnotations; using Volo.Abp.Domain.Entities.Auditing; using Win_in.Sfs.Scp.WebApi.Domain.Shared; namespace Win_in.Sfs.Scp.WebApi { /// /// 收货单与退货单明细(Receipt) /// public class Receipt: EntityBase { /// /// 收货单号(RcNumber) /// [Display(Name = "收货单号(RcNumber)")] public string RcNumber { set; get; } /// /// 发货单号(AsnNumber) /// [Display(Name = "发货单号(AsnNumber)")] public string AsnNumber { set; get; } /// /// 要货计划单号(RpNumber) /// [Display(Name = "要货计划单号(RpNumber)")] public string RpNumber { set; get; } /// /// 订单号(PoNumber) /// [Display(Name = "订单号(PoNumber)")] public string PoNumber { set; get; } /// /// 供应商代码(PoNumber) /// [Display(Name = "供应商代码(SupplierCode)")] public string SupplierCode { set; get; } /// /// 收货单类型(RcType) /// [Display(Name = "收货单类型(RcType)")] public string RcType { set; get; } /// /// 仓库(Warehouse) /// [Display(Name = "仓库(Warehouse)")] public string Warehouse { set; get; } /// /// 收货口(Dock) /// [Display(Name = "收货口(Dock)")] public string Dock { set; get; } /// /// 时间窗口开始(TimeWindowBegin) /// [Display(Name = "时间窗口开始(TimeWindowBegin)")] public DateTime TimeWindowBegin { set; get; } /// /// 时间窗口结束(TimeWindowEnd) /// [Display(Name = "时间窗口结束(TimeWindowEnd)")] public DateTime TimeWindowEnd { set; get; } /// /// 收货时间(ReceiveTime) /// [Display(Name = "收货时间(ReceiveTime)")] public DateTime ReceiveTime { set; get; } /// /// 地点(Site) /// [Display(Name = "地点(Site)")] public string Site { set; get; } /// /// 公司(Company) /// [Display(Name = "公司(Company)")] public string Company { set; get; } /// /// 订单行(PoLine) /// [Display(Name = "订单行(PoLine)")] public string PoLine { set; get; } /// /// 零件号(PartCode) /// [Display(Name = "零件号(PartCode)")] public string PartCode { set; get; } /// /// 批次(Lot) /// [Display(Name = "批次(Lot)")] public string Lot { set; get; } /// /// 供应商批次(SupplierLot) /// [Display(Name = "供应商批次(SupplierLot)")] public string SupplierLot { set; get; } /// /// 生产日期(ProductionDate) /// [Display(Name = "生产日期(ProductionDate)")] public DateTime ProductionDate { set; get; } /// /// 计量单位(Uom) /// [Display(Name = "计量单位(Uom)")] public string Uom { set; get; } /// /// 发货数量(DeliverQty) /// [Display(Name = "发货数量(DeliverQty)")] public decimal DeliverQty { set; get; } /// /// 收货数量(ReceiveQty) /// [Display(Name = "收货数量(ReceiveQty)")] public decimal ReceiveQty { set; get; } /// /// 标包计量单位(Standard Pack Uom) /// [Display(Name = "标包计量单位(Standard Pack Uom)")] public string StdPackUom { set; get; } /// /// 标包数量(Standard Pack Qty) /// [Display(Name = "标包数量(Standard Pack Qty)")] public decimal StdPackQty { set; get; } /// /// 供应商计量单位(SupplierPackUom) /// [Display(Name = "供应商计量单位(SupplierPackUom)")] public string SupplierPackUom { set; get; } /// /// 供应商包装数量(SupplierPackQty) /// [Display(Name = "供应商包装数量(SupplierPackQty)")] public decimal SupplierPackQty { set; get; } /// /// 供应商包装转换率(SupplierPackConvertRate) /// [Display(Name = "供应商包装转换率(SupplierPackConvertRate)")] public decimal SupplierPackConvertRate { set; get; } /// /// 备注(Remark) /// [Display(Name = "备注(Remark)")] public string Remark { set; get; } } }