[fea]
[detailId -> shiftsId]
This commit is contained in:
yangyakun
2024-12-17 17:10:36 +08:00
parent 60c13cab0c
commit a2fe4e1ccf
4 changed files with 14 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ public class LoginInfo {
private Long siteId;//站点id 包车使用
private Long currentSite;//当前站点 接驳、公交、班车使用
private Boolean leaving;// 当前站点是否出发
private Long detailId;//模板id
private Long shiftsId;//模板id
private Long taskDate;// 任务或模板的日期
private String vin;//车辆唯一识别码
private String cityCode;//城市编码
@@ -210,12 +210,12 @@ public class LoginInfo {
this.siteId = siteId;
}
public Long getDetailId() {
return detailId;
public Long getShiftsId() {
return shiftsId;
}
public void setDetailId(Long detailId) {
this.detailId = detailId;
public void setShiftsId(Long shiftsId) {
this.shiftsId = shiftsId;
}
@Override