Commit c43bdc806794ad408ed927b3bad0d79ba70eba4c

Authored by 徐烜
1 parent 11208c04

update

src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
... ... @@ -26,8 +26,8 @@ public class SchedulePlanInfo {
26 26 private String lpName;
27 27 /** 线路名称 */
28 28 private String xlName;
29   - /** 车辆名称 */
30   - private String clName;
  29 + /** 车辆自编号 */
  30 + private String clZbh;
31 31  
32 32  
33 33 /** 报道1时间(格式 HH:mm) */
... ... @@ -117,12 +117,12 @@ public class SchedulePlanInfo {
117 117 this.xlName = xlName;
118 118 }
119 119  
120   - public String getClName() {
121   - return clName;
  120 + public String getClZbh() {
  121 + return clZbh;
122 122 }
123 123  
124   - public void setClName(String clName) {
125   - this.clName = clName;
  124 + public void setClZbh(String clZbh) {
  125 + this.clZbh = clZbh;
126 126 }
127 127  
128 128 public String getCc1Time() {
... ...