1、基础数据修复bug

2、客商模块修复bug
This commit is contained in:
2026-08-06 02:57:38 +08:00
parent 58726a675e
commit 28eb484a68
23 changed files with 294 additions and 90 deletions

View File

@@ -34,6 +34,7 @@ import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
import java.io.Serial;
import java.math.BigDecimal;
/**
* 评分项目实体类
@@ -71,6 +72,11 @@ public class CreditScoreItem extends TenantEntity {
*/
@Schema(description = "评分项目")
private String itemName;
/**
* 分值
*/
@Schema(description = "分值")
private BigDecimal score;
/**
* 得分说明
*/

View File

@@ -60,6 +60,10 @@ public class CreditScoreQuantificationVO extends CreditScoreQuantification {
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTimeEnd;
@TableField(exist = false)
@Schema(description = "创建人姓名")
private String createUserName;
@TableField(exist = false)
@Schema(description = "评分分类")
private List<CreditScoreCategoryVO> categories = new ArrayList<>();