fix:列表,添加,编辑 增加 proxyOperaterId(运营商Id)关联
This commit is contained in:
parent
550bb94f2c
commit
796e72cbfd
@ -124,4 +124,7 @@ public class VehicleInfo implements Serializable {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
||||||
private Date uptime;
|
private Date uptime;
|
||||||
|
|
||||||
|
@Schema(description = "运营商Id")
|
||||||
|
private String proxyOperaterId;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -72,6 +72,7 @@ public class VehicleServiceImpl implements VehicleService {
|
|||||||
.eq(StringUtils.hasText(plvr.getFrameworkNo()), "framework_no", plvr.getFrameworkNo())
|
.eq(StringUtils.hasText(plvr.getFrameworkNo()), "framework_no", plvr.getFrameworkNo())
|
||||||
.eq(StringUtils.hasText(plvr.getPhone()), "phone", plvr.getPhone())
|
.eq(StringUtils.hasText(plvr.getPhone()), "phone", plvr.getPhone())
|
||||||
.eq(StringUtils.hasText(plvr.getCcode()), "ccode", plvr.getCcode())
|
.eq(StringUtils.hasText(plvr.getCcode()), "ccode", plvr.getCcode())
|
||||||
|
.eq(StringUtils.hasText(plvr.getProxyOperaterId()), "proxy_operater_id", plvr.getProxyOperaterId())
|
||||||
.ne("del_flag", 1)
|
.ne("del_flag", 1)
|
||||||
.orderByAsc("plate_num"));
|
.orderByAsc("plate_num"));
|
||||||
if (page.getRecords().isEmpty()) {
|
if (page.getRecords().isEmpty()) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user