CurrentRmStoreHouseUpdateDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace ShwasherSys.RmStore.Dto
  6. {
  7. [AutoMapTo(typeof(CurrentRmStoreHouse))]
  8. public class CurrentRmStoreHouseUpdateDto: EntityDto<string>
  9. {
  10. public string ProductionOrderNo { get; set; }
  11. [Required]
  12. public int StoreHouseId { get; set; }
  13. /// <summary>
  14. /// 库位编码
  15. /// </summary>
  16. public string StoreLocationNo { get; set; }
  17. /// <summary>
  18. /// 原材料编号
  19. /// </summary>
  20. public string RmProductNo { get; set; }
  21. /// <summary>
  22. /// 冻结数量(用于出库申请之后还未正式出库的数量)
  23. /// </summary>
  24. public decimal FreezeQuantity { get; set; }
  25. /// <summary>
  26. /// 当前实际数量
  27. /// </summary>
  28. public decimal Quantity { get; set; }
  29. public string Remark { get; set; }
  30. /// <summary>
  31. /// 上月底剩余数量
  32. /// </summary>
  33. public decimal? PreMonthQuantity { get; set; }
  34. public string ProductBatchNum { get; set; }
  35. }
  36. }