AmsTaskDTO.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package com.warewms.ams.ndc.dto;
  2. import com.warewms.common.annotation.Excel;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * ams任务列表对象 ams_task
  8. *
  9. * @author andy
  10. * @date 2022-08-08
  11. */
  12. @Data
  13. public class AmsTaskDTO implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * $column.columnComment
  17. */
  18. private Long id;
  19. /**
  20. * 任务编号
  21. */
  22. @Excel(name = "任务编号")
  23. private String taskNo;
  24. /**
  25. * $column.columnComment
  26. */
  27. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  28. private Long ikey;
  29. /**
  30. * $column.columnComment
  31. */
  32. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  33. private Integer aciIndex;
  34. /**
  35. * $column.columnComment
  36. */
  37. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  38. private Integer stFrom;
  39. /**
  40. * $column.columnComment
  41. */
  42. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  43. private Integer stTo;
  44. /**
  45. * $column.columnComment
  46. */
  47. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  48. private Integer priority;
  49. /**
  50. * $column.columnComment
  51. */
  52. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  53. private Integer systemStatus;
  54. /**
  55. * $column.columnComment
  56. */
  57. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  58. private Integer event;
  59. /**
  60. * $column.columnComment
  61. */
  62. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  63. private Integer serverAck;
  64. /**
  65. * $column.columnComment
  66. */
  67. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  68. private Integer aciAccept;
  69. /**
  70. * $column.columnComment
  71. */
  72. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  73. private Integer isDelete;
  74. /**
  75. * $column.columnComment
  76. */
  77. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  78. private String callbackurl;
  79. /**
  80. * $column.columnComment
  81. */
  82. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  83. private Date addtime;
  84. /**
  85. * $column.columnComment
  86. */
  87. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  88. private String addwho;
  89. /**
  90. * 调用系统名称
  91. */
  92. @Excel(name = "调用系统名称")
  93. private String sysName;
  94. /**
  95. * 设备名称
  96. */
  97. @Excel(name = "设备名称")
  98. private String deviceName;
  99. /**
  100. * 任务类型(01普通任务60进判断位90出判断位m释放判断位)
  101. */
  102. @Excel(name = "任务类型(01普通任务60进判断位90出判断位m释放判断位)")
  103. private String businessType;
  104. /**
  105. * $column.columnComment
  106. */
  107. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  108. private String ext1;
  109. /**
  110. * $column.columnComment
  111. */
  112. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  113. private String ext2;
  114. /**
  115. * $column.columnComment
  116. */
  117. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  118. private String ext3;
  119. /**
  120. * 1(低) 2(中) 3(高)
  121. */
  122. @Excel(name = "1(低) 2(中) 3(高)")
  123. private String heightLevel;
  124. /**
  125. * 巷道
  126. */
  127. @Excel(name = "巷道")
  128. private String roadway;
  129. /**
  130. * 层
  131. */
  132. @Excel(name = "层")
  133. private String tier;
  134. }