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