16a9284cf60a86859fd2d70124b0f503c70f292f.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. * BisInspTravelPlanPolylineParam
  9. *
  10. * @author lhc
  11. * @date 2019-9-17
  12. */
  13. public class BisInspTravelPlanPolylineParam 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 = "instruction")
  25. private String instruction;
  26. // 距离
  27. @ApiParam(name = "距离")
  28. @ApiModelProperty(value = "距离", name = "distance")
  29. private Long distance;
  30. // 线数据
  31. @ApiParam(name = "线数据")
  32. @ApiModelProperty(value = "线数据", name = "polyline")
  33. private String polyline;
  34. // 动作
  35. @ApiParam(name = "动作")
  36. @ApiModelProperty(value = "动作", name = "action")
  37. private String action;
  38. // 插入时间
  39. @ApiParam(name = "插入时间")
  40. @ApiModelProperty(value = "插入时间", name = "intm")
  41. private Date intm;
  42. // 最后修改时间
  43. @ApiParam(name = "最后修改时间")
  44. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  45. private Date uptm;
  46. // 数据状态(0:正常;9:删除)
  47. @ApiParam(name = "数据状态(0:正常;9:删除)")
  48. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  49. private String dataStat;
  50. public BisInspTravelPlanPolylineParam() {
  51. }
  52. public String getId() {
  53. return id;
  54. }
  55. public void setId(String id) {
  56. this.id = id;
  57. }
  58. public String getPlanDayId() {
  59. return planDayId;
  60. }
  61. public void setPlanDayId(String planDayId) {
  62. this.planDayId = planDayId;
  63. }
  64. public String getInstruction() {
  65. return instruction;
  66. }
  67. public void setInstruction(String instruction) {
  68. this.instruction = instruction;
  69. }
  70. public Long getDistance() {
  71. return distance;
  72. }
  73. public void setDistance(Long distance) {
  74. this.distance = distance;
  75. }
  76. public String getPolyline() {
  77. return polyline;
  78. }
  79. public void setPolyline(String polyline) {
  80. this.polyline = polyline;
  81. }
  82. public String getAction() {
  83. return action;
  84. }
  85. public void setAction(String action) {
  86. this.action = action;
  87. }
  88. public Date getIntm() {
  89. return intm;
  90. }
  91. public void setIntm(Date intm) {
  92. this.intm = intm;
  93. }
  94. public Date getUptm() {
  95. return uptm;
  96. }
  97. public void setUptm(Date uptm) {
  98. this.uptm = uptm;
  99. }
  100. public String getDataStat() {
  101. return dataStat;
  102. }
  103. public void setDataStat(String dataStat) {
  104. this.dataStat = dataStat;
  105. }
  106. }