e4384d1ceebade68fdc102b6a376c275356de074.svn-base 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. import java.util.List;
  8. /**
  9. * entity:BisInspTravelPlanDay
  10. *
  11. * @author lhc
  12. * @date 2019-9-17
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspTravelPlanDay extends BaseBean implements Serializable {
  16. // ID
  17. @ApiModelProperty(value = "ID", name = "id")
  18. private String id;
  19. // 路书ID
  20. @ApiModelProperty(value = "路书ID", name = "travelPlanId")
  21. private String travelPlanId;
  22. // 简称
  23. @ApiModelProperty(value = "简称", name = "title")
  24. private String title;
  25. // 行程耗时(分钟)
  26. @ApiModelProperty(value = "行程耗时(分钟)", name = "minte")
  27. private Long minte;
  28. // 距离(公里)
  29. @ApiModelProperty(value = "距离(公里)", name = "distance")
  30. private Double distance;
  31. // 顺序
  32. @ApiModelProperty(value = "顺序", name = "ordr")
  33. private Integer ordr;
  34. // 插入时间
  35. @ApiModelProperty(value = "插入时间", name = "intm")
  36. private Date intm;
  37. // 最后修改时间
  38. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  39. private Date uptm;
  40. // 数据状态(0:正常;9:删除)
  41. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  42. private String dataStat;
  43. @ApiModelProperty(value = "路书每天经过点信息", name = "bisInspTravelPlanDayList")
  44. private List<BisInspTravelPlanPoint> bisInspTravelPlanPoints;
  45. public BisInspTravelPlanDay() {
  46. }
  47. public String getId() {
  48. return id;
  49. }
  50. public void setId(String id) {
  51. this.id = id;
  52. }
  53. public String getTravelPlanId() {
  54. return travelPlanId;
  55. }
  56. public void setTravelPlanId(String travelPlanId) {
  57. this.travelPlanId = travelPlanId;
  58. }
  59. public String getTitle() {
  60. return title;
  61. }
  62. public void setTitle(String title) {
  63. this.title = title;
  64. }
  65. public Long getMinte() {
  66. return minte;
  67. }
  68. public void setMinte(Long minte) {
  69. this.minte = minte;
  70. }
  71. public Double getDistance() {
  72. return distance;
  73. }
  74. public void setDistance(Double distance) {
  75. this.distance = distance;
  76. }
  77. public Integer getOrdr() {
  78. return ordr;
  79. }
  80. public void setOrdr(Integer ordr) {
  81. this.ordr = ordr;
  82. }
  83. public Date getIntm() {
  84. return intm;
  85. }
  86. public void setIntm(Date intm) {
  87. this.intm = intm;
  88. }
  89. public Date getUptm() {
  90. return uptm;
  91. }
  92. public void setUptm(Date uptm) {
  93. this.uptm = uptm;
  94. }
  95. public String getDataStat() {
  96. return dataStat;
  97. }
  98. public void setDataStat(String dataStat) {
  99. this.dataStat = dataStat;
  100. }
  101. public List<BisInspTravelPlanPoint> getBisInspTravelPlanPoints() {
  102. return bisInspTravelPlanPoints;
  103. }
  104. public void setBisInspTravelPlanPoints(List<BisInspTravelPlanPoint> bisInspTravelPlanPoints) {
  105. this.bisInspTravelPlanPoints = bisInspTravelPlanPoints;
  106. }
  107. @Override
  108. public String toString() {
  109. return "BisInspTravelPlanDay [" + "id=" + id + ", travelPlanId=" + travelPlanId + ", title=" + title + ", minte=" + minte + ", distance=" + distance + ", ordr=" + ordr + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  110. }
  111. }