using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace ShwasherSys.RmStore.Dto { [AutoMapTo(typeof(RmEnterStore)),AutoMapFrom(typeof(RmEnterStore))] public class RmEnterStoreDto: EntityDto { public string ProductionOrderNo { get; set; } /// /// 原材料编号 /// public string RmProductNo { get; set; } public int StoreHouseId { get; set; } public string StoreLocationNo { get; set; } /// /// /// ///0.新建 1.申请中 2.已审核 3.已取消 4.已拒绝 5.已出库 /// /// /// 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 string ProductBatchNum { get; set; } public int CreateSourceType { get; set; } } public class RwEnterStatusUpdateDto { public string Id { get; set; } public int ApplyStatus { get; set; } //入库数量 public decimal Quantity { get; set; } } }