package com.ltkj.hosp.domain;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 规则+病种对象 tj_rules
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-08-30
|
*/
|
@Data
|
public class TjRules extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId
|
@ApiModelProperty("主键id")
|
@JsonSerialize(using = ToStringSerializer.class)
|
private String aid;
|
|
/**
|
* 项目id
|
*/
|
@Excel(name = "项目id")
|
private String proId;
|
|
/**
|
* 项目名
|
*/
|
@Excel(name = "项目名")
|
private String proName;
|
|
/**
|
* 规则类型
|
*/
|
@Excel(name = "规则类型")
|
private String ruleType;
|
|
/**
|
* 规则
|
*/
|
@Excel(name = "规则")
|
private String ruleStr;
|
|
/**
|
* 病种id
|
*/
|
@Excel(name = "病种id")
|
private String icdId;
|
|
/**
|
* 病种编码
|
*/
|
@Excel(name = "病种编码")
|
private String icdcode;
|
|
/**
|
* 病种名称
|
*/
|
@Excel(name = "病种名称")
|
private String bingzhong;
|
|
/**
|
* 病种拼音
|
*/
|
@Excel(name = "病种拼音")
|
private String bzPinyin;
|
|
/**
|
* 性别
|
*/
|
@Excel(name = "性别")
|
private String sex;
|
|
/**
|
* 年龄-
|
*/
|
@Excel(name = "年龄-")
|
private Long ageLt;
|
|
/**
|
* 年龄+
|
*/
|
@Excel(name = "年龄+")
|
private Long ageGt;
|
|
/**
|
* 规则范围-
|
*/
|
@Excel(name = "规则范围-")
|
private BigDecimal ruleLt;
|
|
/**
|
* 规则范围+
|
*/
|
@Excel(name = "规则范围+")
|
private BigDecimal ruleGt;
|
|
/**
|
* 标识
|
*/
|
@Excel(name = "标识")
|
private String sign;
|
|
/**
|
* 积极性
|
*/
|
@Excel(name = "积极性")
|
private Long idPositive;
|
|
/**
|
* 范围
|
*/
|
@Excel(name = "范围")
|
private String reference;
|
|
/**
|
* 优先级
|
*/
|
@Excel(name = "优先级")
|
private Long sort;
|
|
/**
|
* 小于标识
|
*/
|
@Excel(name = "小于标识")
|
private String lowSymbol;
|
|
/**
|
* 大于标识
|
*/
|
@Excel(name = "大于标识")
|
private String heighSymbol;
|
|
/**
|
* 组号
|
*/
|
private String groupId;
|
|
|
@TableField(exist = false)
|
private List<TjRuleAdvice> ruleAdvices;
|
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("aid", getAid())
|
.append("proId", getProId())
|
.append("proName", getProName())
|
.append("ruleType", getRuleType())
|
.append("ruleStr", getRuleStr())
|
.append("bingzhong", getBingzhong())
|
.append("bzPinyin", getBzPinyin())
|
.append("sex", getSex())
|
.append("ageLt", getAgeLt())
|
.append("ageGt", getAgeGt())
|
.append("ruleLt", getRuleLt())
|
.append("ruleGt", getRuleGt())
|
.append("sign", getSign())
|
.append("idPositive", getIdPositive())
|
.append("reference", getReference())
|
.append("sort", getSort())
|
.append("lowSymbol", getLowSymbol())
|
.append("heighSymbol", getHeighSymbol())
|
.append("groupId", getGroupId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("deleted", getDeleted())
|
.append("createId", getCreateId())
|
.append("updateId", getUpdateId())
|
.toString();
|
}
|
}
|