StoreHouseLocationCreateDto.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using Abp.AutoMapper;
  3. using System.ComponentModel.DataAnnotations;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.StoreHouseLocations.Dto
  6. {
  7. [AutoMapTo(typeof(StoreHouseLocation))]
  8. public class StoreHouseLocationCreateDto
  9. {
  10. [StringLength(StoreHouseLocation.StoreLocationNoMaxLength)]
  11. public string StoreLocationNo { get; set; }
  12. /// <summary>
  13. /// 库区
  14. /// </summary>
  15. [StringLength(StoreHouseLocation.StoreAreaCodeMaxLength)]
  16. public string StoreAreaCode { get; set; }
  17. /// <summary>
  18. /// 货架号
  19. /// </summary>
  20. [StringLength(StoreHouseLocation.ShelfNumberMaxLength)]
  21. public string ShelfNumber { get; set; }
  22. /// <summary>
  23. /// 层次
  24. /// </summary>
  25. [StringLength(StoreHouseLocation.ShelfLevelMaxLength)]
  26. public string ShelfLevel { get; set; }
  27. /// <summary>
  28. /// 序列号
  29. /// </summary>
  30. [StringLength(StoreHouseLocation.SequenceNoMaxLength)]
  31. public string SequenceNo { get; set; }
  32. [StringLength(StoreHouseLocation.RemarkMaxLength)]
  33. public string Remark { get; set; }
  34. /// <summary>
  35. /// 仓库ID
  36. /// </summary>
  37. public int? StoreHouseId { get; set; }
  38. }
  39. }