| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.ycl.system.entity.BaseEntity; |
| | | import com.ycl.system.domain.TreeEntity; |
| | | import org.apache.commons.lang.builder.ToStringBuilder; |
| | | import org.apache.commons.lang.builder.ToStringStyle; |
| | | |
| | |
| | | * 核算规则对象 t_calculate_rule |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | * @date 2024-04-03 |
| | | */ |
| | | public class CalculateRule extends BaseEntity |
| | | public class CalculateRule extends TreeEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | /** */ |
| | | private Long id; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String name; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long templateId; |
| | | |
| | | /** $column.columnComment */ |
| | | private Long parentId; |
| | | |
| | | /** 单位id */ |
| | | @Excel(name = "单位id") |
| | |
| | | /** 每少1%扣当月总服务费的多少 */ |
| | | @Excel(name = "每少1%扣当月总服务费的多少") |
| | | private BigDecimal value; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String description; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | |
| | | { |
| | | return templateId; |
| | | } |
| | | public void setParentId(Long parentId) |
| | | { |
| | | this.parentId = parentId; |
| | | } |
| | | |
| | | public Long getParentId() |
| | | { |
| | | return parentId; |
| | | } |
| | | public void setUnitId(Long unitId) |
| | | { |
| | | this.unitId = unitId; |
| | |
| | | { |
| | | return value; |
| | | } |
| | | public void setDescription(String description) |
| | | { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getDescription() |
| | | { |
| | | return description; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | |
| | | .append("parentId", getParentId()) |
| | | .append("unitId", getUnitId()) |
| | | .append("value", getValue()) |
| | | .append("description", getDescription()) |
| | | .toString(); |
| | | } |
| | | } |