项目、合同、运单、预结算、正式结算、付款对接mk

This commit is contained in:
2026-09-21 13:52:34 +08:00
parent 2dafd44c26
commit 2404281bff
6 changed files with 127 additions and 1 deletions
@@ -30,6 +30,8 @@ import org.springblade.transport.pojo.entity.ProjectApply;
import java.io.Serial;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
/**
* 项目立项视图实体类
@@ -104,4 +106,16 @@ public class ProjectApplyVO extends ProjectApply {
@Schema(description = "风险计算额度基数")
private BigDecimal maxFundLimit;
@TableField(exist = false)
@Schema(description = "货物类型字典,公开页回显使用")
private List<Map<String, String>> cargoTypeOptions;
@TableField(exist = false)
@Schema(description = "运输类型字典,公开页回显使用")
private List<Map<String, String>> transportTypeOptions;
@TableField(exist = false)
@Schema(description = "结算方式字典,公开页回显使用")
private List<Map<String, String>> settlementModeOptions;
}