using System; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; namespace ShwasherSys.ScrapStore.Dto { [AutoMapTo(typeof(ScrapEnterStore))] public class ScrapEnterStoreCreateDto:EntityDto { public string ProductionOrderNo { get; set; } /// /// 产品编号 /// public string ProductNo { get; set; } [Required] public int StoreHouseId { get; set; } public string StoreLocationNo { get; set; } /// /// // //0.新建 1.申请中 2.已审核 3.已取消 4.已拒绝 5.已出库 // // /// [Required] public int ApplyStatus { get; set; } /// /// 是否已关闭 /// public bool IsClose { get; set; } /// /// 入库数量(千件) /// public decimal Quantity { get; set; } /// /// 申请入库数量(千斤/千件) /// public decimal ApplyQuantity { get; set; } /// /// 审核人员 /// public string AuditUser { get; set; } /// /// 审核时间 /// public DateTime? AuditDate { get; set; } /// /// 申请入库时间 /// public DateTime? ApplyEnterDate { get; set; } public string EnterStoreUser { get; set; } public DateTime? EnterStoreDate { get; set; } public string Remark { get; set; } public int ProductType { get; set; } //报废来源 1:成品退货 2:半成品检验报废 public int ScrapSource { get; set; } //来源编码 记录来源数据主键编号 用于回溯 public string ScrapSourceNo { get; set; } } }