AkmData.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. package com.ruoyi.system.domain;
  2. import java.util.Date;
  3. import java.util.List;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.ruoyi.common.annotation.Excel;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 安康码扫码地点对象 akm_data
  11. *
  12. * @author ruoyi
  13. * @date 2022-10-10
  14. */
  15. public class AkmData extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** $column.columnComment */
  19. private Long id;
  20. /** 姓名 */
  21. @Excel(name = "姓名")
  22. private String name;
  23. /** 身份证号码 */
  24. @Excel(name = "身份证号码")
  25. private String idCard;
  26. /** 联系号码 */
  27. @Excel(name = "联系号码")
  28. private String phoneNum;
  29. /** 扫码时间(采集时间) */
  30. @Excel(name = "扫码时间(采集时间)", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
  31. private String collectTime;
  32. /** 扫码地点(采集地点) */
  33. @Excel(name = "扫码地点", readConverterExp = "采集地点")
  34. private String collectSite;
  35. /** 设备id */
  36. @Excel(name = "设备id")
  37. private String equipId;
  38. /** 设备名称 */
  39. @Excel(name = "设备名称")
  40. private String equipName;
  41. /** 单位名称 */
  42. @Excel(name = "单位名称")
  43. private String unitName;
  44. /** 小区名称 */
  45. @Excel(name = "小区名称")
  46. private String community;
  47. /** 类型 */
  48. @Excel(name = "类型")
  49. private String type;
  50. /** 状态 */
  51. @Excel(name = "状态")
  52. private String state;
  53. /** 体温 */
  54. @Excel(name = "体温")
  55. private String temperature;
  56. /** 所属用户 */
  57. @Excel(name = "所属用户")
  58. private String belongsUser;
  59. private String startTime;
  60. private String endTime;
  61. private List<String> equipIdList;
  62. public List<String> getEquipIdList() {
  63. return equipIdList;
  64. }
  65. public void setEquipIdList(List<String> equipIdList) {
  66. this.equipIdList = equipIdList;
  67. }
  68. private List<AkmData> akmDataList;
  69. public List<AkmData> getAkmDataList() {
  70. return akmDataList;
  71. }
  72. public void setAkmDataList(List<AkmData> akmDataList) {
  73. this.akmDataList = akmDataList;
  74. }
  75. public String getStartTime() {
  76. return startTime;
  77. }
  78. public String getEndTime() {
  79. return endTime;
  80. }
  81. public void setStartTime(String startTime) {
  82. this.startTime = startTime;
  83. }
  84. public void setEndTime(String endTime) {
  85. this.endTime = endTime;
  86. }
  87. public Long getId() {
  88. return id;
  89. }
  90. public String getName() {
  91. return name;
  92. }
  93. public String getIdCard() {
  94. return idCard;
  95. }
  96. public String getPhoneNum() {
  97. return phoneNum;
  98. }
  99. public String getCollectTime() {
  100. return collectTime;
  101. }
  102. public String getCollectSite() {
  103. return collectSite;
  104. }
  105. public String getEquipId() {
  106. return equipId;
  107. }
  108. public String getEquipName() {
  109. return equipName;
  110. }
  111. public String getUnitName() {
  112. return unitName;
  113. }
  114. public String getCommunity() {
  115. return community;
  116. }
  117. public String getType() {
  118. return type;
  119. }
  120. public String getState() {
  121. return state;
  122. }
  123. public String getTemperature() {
  124. return temperature;
  125. }
  126. public String getBelongsUser() {
  127. return belongsUser;
  128. }
  129. public void setId(Long id) {
  130. this.id = id;
  131. }
  132. public void setName(String name) {
  133. this.name = name;
  134. }
  135. public void setIdCard(String idCard) {
  136. this.idCard = idCard;
  137. }
  138. public void setPhoneNum(String phoneNum) {
  139. this.phoneNum = phoneNum;
  140. }
  141. public void setCollectTime(String collectTime) {
  142. this.collectTime = collectTime;
  143. }
  144. public void setCollectSite(String collectSite) {
  145. this.collectSite = collectSite;
  146. }
  147. public void setEquipId(String equipId) {
  148. this.equipId = equipId;
  149. }
  150. public void setEquipName(String equipName) {
  151. this.equipName = equipName;
  152. }
  153. public void setUnitName(String unitName) {
  154. this.unitName = unitName;
  155. }
  156. public void setCommunity(String community) {
  157. this.community = community;
  158. }
  159. public void setType(String type) {
  160. this.type = type;
  161. }
  162. public void setState(String state) {
  163. this.state = state;
  164. }
  165. public void setTemperature(String temperature) {
  166. this.temperature = temperature;
  167. }
  168. public void setBelongsUser(String belongsUser) {
  169. this.belongsUser = belongsUser;
  170. }
  171. @Override
  172. public String toString() {
  173. return "AkmData{" +
  174. "id=" + id +
  175. ", name='" + name + '\'' +
  176. ", idCard='" + idCard + '\'' +
  177. ", phoneNum='" + phoneNum + '\'' +
  178. ", collectTime='" + collectTime + '\'' +
  179. ", collectSite='" + collectSite + '\'' +
  180. ", equipId='" + equipId + '\'' +
  181. ", equipName='" + equipName + '\'' +
  182. ", unitName='" + unitName + '\'' +
  183. ", community='" + community + '\'' +
  184. ", type='" + type + '\'' +
  185. ", state='" + state + '\'' +
  186. ", temperature='" + temperature + '\'' +
  187. ", belongsUser='" + belongsUser + '\'' +
  188. '}';
  189. }
  190. }