StoreHouseLocationUpdateDto.cs 1.4 KB

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