6b005984f2a539dbd227f47935a5d187d02d7758.svn-base 3.3 KB

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