| | |
| | | |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.CheckTemplate; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.ycl.platform.domain.form.CheckTemplateForm; |
| | | import org.springframework.lang.NonNull; |
| | | import org.springframework.beans.BeanUtils; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | private String templateName; |
| | | |
| | | /** 调整系数 */ |
| | | private Integer adjustCoefficient; |
| | | private BigDecimal adjustCoefficient; |
| | | |
| | | /** 调整系数的方式:乘除 */ |
| | | private String adjustWay; |
| | |
| | | /** 状态 */ |
| | | private String status; |
| | | |
| | | /** 规则列表 */ |
| | | private List<RuleItemVO> ruleFormList; |
| | | /** 单位名 */ |
| | | private String unitName; |
| | | public static CheckTemplateVO getVoByEntity(@NonNull CheckTemplate entity, CheckTemplateVO vo) { |
| | | if(vo == null) { |
| | | vo = new CheckTemplateVO(); |