19a50c0a844628c08f5609f430f9efc9c3fe2d19.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspTravelPlanPoint
  9. *
  10. * @author lhc
  11. * @date 2019-9-17
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspTravelPlanPointDto extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 路书日行程ID
  19. @ApiModelProperty(value = "路书日行程ID", name = "planDayId")
  20. private String planDayId;
  21. // 经过点名称
  22. @ApiModelProperty(value = "经过点名称", name = "name")
  23. private String name;
  24. // 行政区代码
  25. @ApiModelProperty(value = "行政区代码", name = "addvcd")
  26. private String addvcd;
  27. // 行政区划名称
  28. @ApiModelProperty(value = "行政区划名称", name = "addvnm")
  29. private String addvnm;
  30. // 行政区级别
  31. @ApiModelProperty(value = "行政区级别", name = "lev")
  32. private String lev;
  33. // 经过点经度
  34. @ApiModelProperty(value = "经过点经度", name = "lgtd")
  35. private Double lgtd;
  36. // 经过点纬度
  37. @ApiModelProperty(value = "经过点纬度", name = "lttd")
  38. private Double lttd;
  39. // 图标
  40. @ApiModelProperty(value = "图标", name = "icons")
  41. private String icons;
  42. // 顺序
  43. @ApiModelProperty(value = "顺序", name = "ordr")
  44. private Long ordr;
  45. private Date intm;
  46. private Date uptm;
  47. // 数据状态(0:正常;9:删除)
  48. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  49. private String dataStat;
  50. // 距离(米)
  51. @ApiModelProperty(value = "距离(米)", name = "distance")
  52. private Long distance;
  53. // 耗时(分钟)
  54. @ApiModelProperty(value = "耗时(分钟)", name = "consuming")
  55. private Long consuming;
  56. // 督查对象类型
  57. @ApiModelProperty(value = "督查对象类型", name = "ptype")
  58. private String ptype;
  59. // 登记表ID
  60. @ApiModelProperty(value = "登记表ID", name = "regId")
  61. private String regId;
  62. public BisInspTravelPlanPointDto() {
  63. }
  64. public String getId() {
  65. return id;
  66. }
  67. public void setId(String id) {
  68. this.id = id;
  69. }
  70. public String getPlanDayId() {
  71. return planDayId;
  72. }
  73. public void setPlanDayId(String planDayId) {
  74. this.planDayId = planDayId;
  75. }
  76. public String getName() {
  77. return name;
  78. }
  79. public void setName(String name) {
  80. this.name = name;
  81. }
  82. public String getAddvcd() {
  83. return addvcd;
  84. }
  85. public void setAddvcd(String addvcd) {
  86. this.addvcd = addvcd;
  87. }
  88. public String getAddvnm() {
  89. return addvnm;
  90. }
  91. public void setAddvnm(String addvnm) {
  92. this.addvnm = addvnm;
  93. }
  94. public String getLev() {
  95. return lev;
  96. }
  97. public void setLev(String lev) {
  98. this.lev = lev;
  99. }
  100. public Double getLgtd() {
  101. return lgtd;
  102. }
  103. public void setLgtd(Double lgtd) {
  104. this.lgtd = lgtd;
  105. }
  106. public Double getLttd() {
  107. return lttd;
  108. }
  109. public void setLttd(Double lttd) {
  110. this.lttd = lttd;
  111. }
  112. public String getIcons() {
  113. return icons;
  114. }
  115. public void setIcons(String icons) {
  116. this.icons = icons;
  117. }
  118. public Long getOrdr() {
  119. return ordr;
  120. }
  121. public void setOrdr(Long ordr) {
  122. this.ordr = ordr;
  123. }
  124. public Date getIntm() {
  125. return intm;
  126. }
  127. public void setIntm(Date intm) {
  128. this.intm = intm;
  129. }
  130. public Date getUptm() {
  131. return uptm;
  132. }
  133. public void setUptm(Date uptm) {
  134. this.uptm = uptm;
  135. }
  136. public String getDataStat() {
  137. return dataStat;
  138. }
  139. public void setDataStat(String dataStat) {
  140. this.dataStat = dataStat;
  141. }
  142. public Long getDistance() {
  143. return distance;
  144. }
  145. public void setDistance(Long distance) {
  146. this.distance = distance;
  147. }
  148. public Long getConsuming() {
  149. return consuming;
  150. }
  151. public void setConsuming(Long consuming) {
  152. this.consuming = consuming;
  153. }
  154. public String getPtype() {
  155. return ptype;
  156. }
  157. public void setPtype(String ptype) {
  158. this.ptype = ptype;
  159. }
  160. public String getRegId() {
  161. return regId;
  162. }
  163. public void setRegId(String regId) {
  164. this.regId = regId;
  165. }
  166. @Override
  167. public String toString() {
  168. 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 + "]";
  169. }
  170. }