b8d69a65a53964c5c116783b7d6c1ea8b43c38fc.svn-base 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. /**
  10. * entity:BisInspTravelPlanPoint
  11. *
  12. * @author lhc
  13. * @date 2019-9-17
  14. */
  15. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  16. public class BisInspTravelPlanPoint extends BaseBean implements Serializable {
  17. // ID
  18. @ApiModelProperty(value = "ID", name = "id")
  19. private String id;
  20. // 路书日行程ID
  21. @ApiModelProperty(value = "路书日行程ID", name = "planDayId")
  22. private String planDayId;
  23. // 经过点名称
  24. @ApiModelProperty(value = "经过点名称", name = "name")
  25. private String name;
  26. // 行政区代码
  27. @ApiModelProperty(value = "行政区代码", name = "addvcd")
  28. private String addvcd;
  29. // 行政区划名称
  30. @ApiModelProperty(value = "行政区划名称", name = "addvnm")
  31. private String addvnm;
  32. // 行政区级别
  33. @ApiModelProperty(value = "行政区级别", name = "lev")
  34. private String lev;
  35. // 经过点经度
  36. @ApiModelProperty(value = "经过点经度", name = "lgtd")
  37. private Double lgtd;
  38. // 经过点纬度
  39. @ApiModelProperty(value = "经过点纬度", name = "lttd")
  40. private Double lttd;
  41. // 图标
  42. @ApiModelProperty(value = "图标", name = "icons")
  43. private String icons;
  44. // 顺序
  45. @ApiModelProperty(value = "顺序", name = "ordr")
  46. private Integer ordr;
  47. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  48. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  49. private Date intm;
  50. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  51. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  52. private Date uptm;
  53. // 数据状态(0:正常;9:删除)
  54. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  55. private String dataStat;
  56. // 距离(米)
  57. @ApiModelProperty(value = "距离(米)", name = "distance")
  58. private Long distance;
  59. // 耗时(分钟)
  60. @ApiModelProperty(value = "耗时(分钟)", name = "consuming")
  61. private Long consuming;
  62. // 督查类型
  63. @ApiModelProperty(value = "督查类型", name = "ptype")
  64. private String ptype;
  65. // 登记表ID
  66. @ApiModelProperty(value = "登记表ID", name = "regid")
  67. private String regid;
  68. // 行程ID
  69. @ApiModelProperty(value = "行程ID", name = "travelPlanId")
  70. private String travelPlanId;
  71. // 开始时间
  72. @ApiModelProperty(value = "开始时间", name = "sttm")
  73. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  74. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  75. private Date sttm;
  76. // 结束时间
  77. @ApiModelProperty(value = "结束时间", name = "entm")
  78. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  79. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  80. private Date entm;
  81. @ApiModelProperty(value = "備註", name = "note")
  82. private String note;
  83. public BisInspTravelPlanPoint() {
  84. }
  85. public String getNote() {
  86. return note;
  87. }
  88. public void setNote(String note) {
  89. this.note = note;
  90. }
  91. public String getTravelPlanId() {
  92. return travelPlanId;
  93. }
  94. public void setTravelPlanId(String travelPlanId) {
  95. this.travelPlanId = travelPlanId;
  96. }
  97. public String getId() {
  98. return id;
  99. }
  100. public void setId(String id) {
  101. this.id = id;
  102. }
  103. public String getPlanDayId() {
  104. return planDayId;
  105. }
  106. public void setPlanDayId(String planDayId) {
  107. this.planDayId = planDayId;
  108. }
  109. public String getName() {
  110. return name;
  111. }
  112. public void setName(String name) {
  113. this.name = name;
  114. }
  115. public String getAddvcd() {
  116. return addvcd;
  117. }
  118. public void setAddvcd(String addvcd) {
  119. this.addvcd = addvcd;
  120. }
  121. public String getAddvnm() {
  122. return addvnm;
  123. }
  124. public void setAddvnm(String addvnm) {
  125. this.addvnm = addvnm;
  126. }
  127. public String getLev() {
  128. return lev;
  129. }
  130. public void setLev(String lev) {
  131. this.lev = lev;
  132. }
  133. public Double getLgtd() {
  134. return lgtd;
  135. }
  136. public void setLgtd(Double lgtd) {
  137. this.lgtd = lgtd;
  138. }
  139. public Double getLttd() {
  140. return lttd;
  141. }
  142. public void setLttd(Double lttd) {
  143. this.lttd = lttd;
  144. }
  145. public String getIcons() {
  146. return icons;
  147. }
  148. public void setIcons(String icons) {
  149. this.icons = icons;
  150. }
  151. public Integer getOrdr() {
  152. return ordr;
  153. }
  154. public void setOrdr(Integer ordr) {
  155. this.ordr = ordr;
  156. }
  157. public Date getIntm() {
  158. return intm;
  159. }
  160. public void setIntm(Date intm) {
  161. this.intm = intm;
  162. }
  163. public Date getUptm() {
  164. return uptm;
  165. }
  166. public void setUptm(Date uptm) {
  167. this.uptm = uptm;
  168. }
  169. public String getDataStat() {
  170. return dataStat;
  171. }
  172. public void setDataStat(String dataStat) {
  173. this.dataStat = dataStat;
  174. }
  175. public Long getDistance() {
  176. return distance;
  177. }
  178. public void setDistance(Long distance) {
  179. this.distance = distance;
  180. }
  181. public Long getConsuming() {
  182. return consuming;
  183. }
  184. public void setConsuming(Long consuming) {
  185. this.consuming = consuming;
  186. }
  187. public String getPtype() {
  188. return ptype;
  189. }
  190. public void setPtype(String ptype) {
  191. this.ptype = ptype;
  192. }
  193. public String getRegid() {
  194. return regid;
  195. }
  196. public void setRegid(String regid) {
  197. this.regid = regid;
  198. }
  199. public Date getSttm() {
  200. return sttm;
  201. }
  202. public void setSttm(Date sttm) {
  203. this.sttm = sttm;
  204. }
  205. public Date getEntm() {
  206. return entm;
  207. }
  208. public void setEntm(Date entm) {
  209. this.entm = entm;
  210. }
  211. @Override
  212. public String toString() {
  213. return "BisInspTravelPlanPoint [" + "id=" + id + ", planDayId=" + planDayId + ", name=" + name + ", addvcd=" + addvcd + ", addvnm=" + addvnm + ", lev=" + lev + ", lgtd=" + lgtd + ", lttd=" + lttd + ", icons=" + icons + ", ordr=" + ordr + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  214. }
  215. }