package com.ycl.platform.domain.vo;
|
|
import com.ycl.system.domain.TreeNode;
|
import enumeration.general.RuleDeductCategoryEnum;
|
import lombok.Data;
|
|
/**
|
* 分数核算规则对象 t_default_rule
|
*
|
* @author ruoyi
|
* @date 2024-04-01
|
*/
|
@Data
|
public class CalculateRuleCascaderVO extends TreeNode {
|
private static final long serialVersionUID = 1L;
|
|
private Long value;
|
|
private String label;
|
|
/**
|
* 扣分方式
|
*/
|
private RuleDeductCategoryEnum deductCategory;
|
|
/**
|
* 扣除分数
|
*/
|
private Double calcFraction;
|
|
/**
|
* 当方式为除以时,除以当前字段数量
|
*/
|
private Integer calcUnit;
|
|
private Long contractId;
|
|
}
|