1、修复菜单无法编辑

2、完善运输计划
3、完善运单管理
4、新增配置管理
This commit is contained in:
2026-08-04 20:53:57 +08:00
parent 30c51ba271
commit 62a110b6de
23 changed files with 2081 additions and 22 deletions

View File

@@ -37,9 +37,33 @@ public class FileCertificateBatchRecognitionDTO implements Serializable {
* 目录名称
*/
private String dirName;
/**
* 磅单 obs key列表
*/
private List<String> poundUrls;
/**
* 车头 obs key列表
*/
private List<String> carFrontUrls;
/**
* 驾驶证 obs key列表
*/
private List<String> driverLicenseUrls;
/**
* 行驶证 obs key列表
*/
private List<String> vehicleLicenseUrls;
public FileCertificateBatchRecognitionDTO(List<String> objectKeys) {
this.objectKeys = objectKeys;
}
public FileCertificateBatchRecognitionDTO(
List<String> objectKeys, String projectAbbreviation, String code, String dirName) {
this.objectKeys = objectKeys;
this.projectAbbreviation = projectAbbreviation;
this.code = code;
this.dirName = dirName;
}
}