fix:列表,添加,编辑 增加 proxyOperaterId(运营商Id)关联

This commit is contained in:
lhb 2025-04-15 15:05:32 +08:00
parent 550bb94f2c
commit 796e72cbfd
2 changed files with 4 additions and 0 deletions

View File

@ -124,4 +124,7 @@ public class VehicleInfo implements Serializable {
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date uptime;
@Schema(description = "运营商Id")
private String proxyOperaterId;
}

View File

@ -72,6 +72,7 @@ public class VehicleServiceImpl implements VehicleService {
.eq(StringUtils.hasText(plvr.getFrameworkNo()), "framework_no", plvr.getFrameworkNo())
.eq(StringUtils.hasText(plvr.getPhone()), "phone", plvr.getPhone())
.eq(StringUtils.hasText(plvr.getCcode()), "ccode", plvr.getCcode())
.eq(StringUtils.hasText(plvr.getProxyOperaterId()), "proxy_operater_id", plvr.getProxyOperaterId())
.ne("del_flag", 1)
.orderByAsc("plate_num"));
if (page.getRecords().isEmpty()) {