WareHouseDto.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using SqlSugar;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.BZModels.Dto.FJ.WareHouseDtos
  7. {
  8. public class WareHouseDto
  9. {
  10. public int IsStop { get; set; }
  11. public string Code { get; set; }
  12. public string Name { get; set; }
  13. public int TypeNum { get; set; }
  14. public long ConfigId { get; set; }
  15. public string Id { get; set; }
  16. public string Memo { get; set; }
  17. public string AddWho { get; set; }
  18. public string EditWho { get; set; }
  19. public DateTime AddTime { get; set; }
  20. public DateTime EditTime { get; set; }
  21. }
  22. public class WareHouseQueryDto : PagerInfo
  23. {
  24. public int IsStop { get; set; }
  25. public string Code { get; set; }
  26. public string Name { get; set; }
  27. public int TypeNum { get; set; }
  28. public long ConfigId { get; set; }
  29. public string Id { get; set; }
  30. public string Memo { get; set; }
  31. public string AddWho { get; set; }
  32. public string EditWho { get; set; }
  33. public DateTime AddTime { get; set; }
  34. public DateTime EditTime { get; set; }
  35. }
  36. }