1、基础数据修复bug
2、客商模块修复bug
This commit is contained in:
@@ -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;
|
||||
/**
|
||||
* 得分说明
|
||||
*/
|
||||
|
||||
@@ -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<>();
|
||||
|
||||
Reference in New Issue
Block a user