调整项目

This commit is contained in:
2026-09-13 01:01:09 +08:00
parent 2da4d824fd
commit 2262c39f60
7 changed files with 356 additions and 4 deletions
@@ -170,6 +170,10 @@ public class ProjectApply extends TenantEntity {
@Schema(description = "项目附件JSON")
private String attachmentsJson;
@Schema(description = "变更记录JSON")
@TableField(value = "change_record_json", insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
private String changeRecordJson;
@Schema(description = "审批状态")
private String approvalStatus;
@@ -29,6 +29,7 @@ import lombok.EqualsAndHashCode;
import org.springblade.transport.pojo.entity.ProjectApply;
import java.io.Serial;
import java.math.BigDecimal;
/**
* 项目立项视图实体类
@@ -79,4 +80,24 @@ public class ProjectApplyVO extends ProjectApply {
@Schema(description = "是否仅查询可用于临时额度申请的项目")
private Boolean temporaryCreditLimitSelectable;
@TableField(exist = false)
@Schema(description = "资金使用风险等级:high、medium、none")
private String fundUseRisk;
@TableField(exist = false)
@Schema(description = "资金使用风险名称")
private String fundUseRiskName;
@TableField(exist = false)
@Schema(description = "资金使用率(百分比)")
private BigDecimal fundUseRate;
@TableField(exist = false)
@Schema(description = "已使用资金金额")
private BigDecimal usedFundLimit;
@TableField(exist = false)
@Schema(description = "风险计算额度基数")
private BigDecimal maxFundLimit;
}