StoreHouseLocationDto.cs 957 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.StoreHouseLocations.Dto
  6. {
  7. [AutoMapTo(typeof(StoreHouseLocation)),AutoMapFrom(typeof(StoreHouseLocation))]
  8. public class StoreHouseLocationDto: EntityDto<int>
  9. {
  10. public string StoreLocationNo { get; set; }
  11. /// <summary>
  12. /// 库区
  13. /// </summary>
  14. public string StoreAreaCode { get; set; }
  15. /// <summary>
  16. /// 货架号
  17. /// </summary>
  18. public string ShelfNumber { get; set; }
  19. /// <summary>
  20. /// 层次
  21. /// </summary>
  22. public string ShelfLevel { get; set; }
  23. /// <summary>
  24. /// 序列号
  25. /// </summary>
  26. public string SequenceNo { get; set; }
  27. public string Remark { get; set; }
  28. /// <summary>
  29. /// 仓库ID
  30. /// </summary>
  31. public int? StoreHouseId { get; set; }
  32. }
  33. }