using System; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; namespace ShwasherSys.RmStore.Dto { [AutoMapTo(typeof(RmEnterStore))] public class RmEnterStoreCreateDto:EntityDto { public string ProductionOrderNo { get; set; } /// /// 原材料编号 /// public string RmProductNo { 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 string ProductBatchNum { get; set; } public int CreateSourceType { get; set; } = 1; } }