Commit 3fb94562c7cd9100f549873a81966e2dd600eafb
1 parent
e32c3b2f
线路信息里添加报表需要的两个字段<权证配车数 权证配车启用日期>
Showing
1 changed file
with
22 additions
and
0 deletions
src/main/java/com/bsth/entity/Line.java
| @@ -116,6 +116,12 @@ public class Line implements Serializable { | @@ -116,6 +116,12 @@ public class Line implements Serializable { | ||
| 116 | /** 普通车辆数量 老版本系统字段, 新版本系统业务需求暂时没用到该字段 ,这里暂时留着 int length(11) */ | 116 | /** 普通车辆数量 老版本系统字段, 新版本系统业务需求暂时没用到该字段 ,这里暂时留着 int length(11) */ |
| 117 | private Integer ordCarNumber; | 117 | private Integer ordCarNumber; |
| 118 | 118 | ||
| 119 | + /** 权证车辆数量 报表需要的字段值 */ | ||
| 120 | + private Integer warrantCar; | ||
| 121 | + | ||
| 122 | + /** 权证配车启用日期 报表需要的字段值 */ | ||
| 123 | + private Integer warrantDate; | ||
| 124 | + | ||
| 119 | /** 停车场编码 老版本系统字段, 新版本系统业务需求暂时没用到该字段 ,这里暂时留着 int length(11) */ | 125 | /** 停车场编码 老版本系统字段, 新版本系统业务需求暂时没用到该字段 ,这里暂时留着 int length(11) */ |
| 120 | private String carParkCode; | 126 | private String carParkCode; |
| 121 | 127 | ||
| @@ -139,6 +145,22 @@ public class Line implements Serializable { | @@ -139,6 +145,22 @@ public class Line implements Serializable { | ||
| 139 | @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") | 145 | @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") |
| 140 | private Date updateDate; | 146 | private Date updateDate; |
| 141 | 147 | ||
| 148 | + public Integer getWarrantCar() { | ||
| 149 | + return warrantCar; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public void setWarrantCar(Integer warrantCar) { | ||
| 153 | + this.warrantCar = warrantCar; | ||
| 154 | + } | ||
| 155 | + | ||
| 156 | + public Integer getWarrantDate() { | ||
| 157 | + return warrantDate; | ||
| 158 | + } | ||
| 159 | + | ||
| 160 | + public void setWarrantDate(Integer warrantDate) { | ||
| 161 | + this.warrantDate = warrantDate; | ||
| 162 | + } | ||
| 163 | + | ||
| 142 | public Integer getLinePlayType() { | 164 | public Integer getLinePlayType() { |
| 143 | return linePlayType; | 165 | return linePlayType; |
| 144 | } | 166 | } |