调整评分量化表
This commit is contained in:
+10
@@ -72,6 +72,16 @@ public class CreditScoreItem extends TenantEntity {
|
||||
*/
|
||||
@Schema(description = "评分项目")
|
||||
private String itemName;
|
||||
/**
|
||||
* 选项类型:option-选项,score-分值
|
||||
*/
|
||||
@Schema(description = "选项类型:option-选项,score-分值")
|
||||
private String optionType;
|
||||
/**
|
||||
* 分值模式基准数值
|
||||
*/
|
||||
@Schema(description = "分值模式基准数值")
|
||||
private BigDecimal baseValue;
|
||||
/**
|
||||
* 分值
|
||||
*/
|
||||
|
||||
+20
@@ -67,6 +67,26 @@ public class CreditScoreItemOption extends TenantEntity {
|
||||
*/
|
||||
@Schema(description = "选项描述")
|
||||
private String optionName;
|
||||
/**
|
||||
* 变化类型:increase-每增加,decrease-每减少
|
||||
*/
|
||||
@Schema(description = "变化类型:increase-每增加,decrease-每减少")
|
||||
private String changeType;
|
||||
/**
|
||||
* 变化数值
|
||||
*/
|
||||
@Schema(description = "变化数值")
|
||||
private BigDecimal changeValue;
|
||||
/**
|
||||
* 变化单位:%、件、次、项、天
|
||||
*/
|
||||
@Schema(description = "变化单位:%、件、次、项、天")
|
||||
private String changeUnit;
|
||||
/**
|
||||
* 分值类型:add-加,subtract-减
|
||||
*/
|
||||
@Schema(description = "分值类型:add-加,subtract-减")
|
||||
private String scoreType;
|
||||
/**
|
||||
* 分值
|
||||
*/
|
||||
|
||||
+9
@@ -68,6 +68,15 @@ public class CustomerCreditScoreDetail extends TenantEntity {
|
||||
@Schema(description = "评分项目")
|
||||
private String itemName;
|
||||
|
||||
@Schema(description = "选项类型:option-选项,score-分值")
|
||||
private String optionType;
|
||||
|
||||
@Schema(description = "分值模式基准数值")
|
||||
private BigDecimal baseValue;
|
||||
|
||||
@Schema(description = "分值模式用户输入数值")
|
||||
private BigDecimal scoreInput;
|
||||
|
||||
@Schema(description = "评分标准")
|
||||
private String optionDescription;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user