1、调整导入运单

2、调整对账
This commit is contained in:
2026-09-10 22:50:00 +08:00
parent e7d7e61846
commit 93c7e6f8f5
33 changed files with 553 additions and 22 deletions
@@ -191,6 +191,11 @@ public class Driver extends TenantEntity {
*/
@Schema(description = "手机号")
private String mobile;
/**
* 关联系统用户ID
*/
@Schema(description = "关联系统用户ID")
private Long userId;
/**
* 与联系人关系
*/
@@ -118,6 +118,9 @@ public class ProjectApply extends TenantEntity {
@Schema(description = "业务类型")
private String businessType;
@Schema(description = "业务模式")
private String businessMode;
@Schema(description = "项目规模(万元)")
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
private BigDecimal projectScale;
@@ -126,6 +129,10 @@ public class ProjectApply extends TenantEntity {
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
private BigDecimal estimatedProfit;
@Schema(description = "利润率(%)")
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
private BigDecimal profitRate;
@Schema(description = "资金需求(万元)")
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
private BigDecimal fundDemand;
@@ -53,6 +53,11 @@ public class TransportVehicle extends TenantEntity {
*/
@Schema(description = "所属组织")
private String organizationName;
/**
* 使用部门
*/
@Schema(description = "使用部门")
private String useDepartment;
/**
* 车牌号
*/
@@ -69,4 +69,11 @@ public class TransportVehicleVO extends TransportVehicle {
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate warningDate;
/**
* 绑定司机(按车牌反查司机驾驶车辆,多个用顿号拼接)
*/
@TableField(exist = false)
@Schema(description = "绑定司机")
private String boundDriver;
}