5c96b1d024ca5b95ec2175a51a6c02cb4cca956c.svn-base 5.6 KB

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