SysConDto.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WMS.BZModels.Dto.FJ.SysConDtos
  8. {
  9. public class SysConDto
  10. {
  11. public string Code { get; set; }
  12. public string Name { get; set; }
  13. public string SContent { get; set; }
  14. public string SType { get; set; }
  15. public string Default1 { get; set; }
  16. public string Default2 { get; set; }
  17. public string Default3 { get; set; }
  18. public string Id { get; set; }
  19. public string Memo { get; set; }
  20. public string AddWho { get; set; }
  21. public string EditWho { get; set; }
  22. public DateTime AddTime { get; set; }
  23. public DateTime EditTime { get; set; }
  24. }
  25. public class SysConQueryDto : PagerInfo
  26. {
  27. public string Code { get; set; }
  28. public string Name { get; set; }
  29. }
  30. public class TunnelDto
  31. {
  32. public string WareHouseName { get; set; }
  33. public string Tunnel { get; set; }
  34. public string Statu { get; set; }
  35. public string StatuName { get; set; }
  36. public string Code { get; set; }
  37. public string Name { get; set; }
  38. public string SContent { get; set; }
  39. public string SType { get; set; }
  40. public string Default1 { get; set; }
  41. public string Default2 { get; set; }
  42. public string Default3 { get; set; }
  43. public string Id { get; set; }
  44. public string Memo { get; set; }
  45. public string AddWho { get; set; }
  46. public string EditWho { get; set; }
  47. public DateTime AddTime { get; set; }
  48. public DateTime EditTime { get; set; }
  49. }
  50. public class TunnelQueryDto : PagerInfo
  51. {
  52. public string Tunnel { get; set; }
  53. }
  54. public class OutInPationDto
  55. {
  56. public string WareHouseName { get; set; }
  57. public string Statu { get; set; }
  58. public string StatuName { get; set; }
  59. public string Code { get; set; }
  60. public string Name { get; set; }
  61. public string SContent { get; set; }
  62. public string SType { get; set; }
  63. public string Default1 { get; set; }
  64. public string Default2 { get; set; }
  65. public string Default3 { get; set; }
  66. public string Id { get; set; }
  67. public string Memo { get; set; }
  68. public string AddWho { get; set; }
  69. public string EditWho { get; set; }
  70. public DateTime AddTime { get; set; }
  71. public DateTime EditTime { get; set; }
  72. }
  73. public class OutInPationQueryDto : PagerInfo
  74. {
  75. public string Pation { get; set; }
  76. }
  77. }