using System; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; namespace ShwasherSys.RmStore.Dto { [AutoMapTo(typeof(CurrentRmStoreHouse))] public class CurrentRmStoreHouseCreateDto:EntityDto { public string ProductionOrderNo { get; set; } [Required] public int StoreHouseId { get; set; } /// /// 库位编码 /// public string StoreLocationNo { get; set; } /// /// 原材料编号 /// public string RmProductNo { get; set; } /// /// 冻结数量(用于出库申请之后还未正式出库的数量) /// public decimal FreezeQuantity { get; set; } /// /// 当前实际数量 /// public decimal Quantity { get; set; } public string Remark { get; set; } /// /// 上月底剩余数量 /// public decimal? PreMonthQuantity { get; set; } public string ProductBatchNum { get; set; } } }