CurrentRmStoreHouseCreateDto.cs 1.2 KB

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