zjh
2025-04-24 672ce84d5ce6545a0e81709ea736c69cbbef8c1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.ltkj.hosp.domain;
 
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_rule_advice
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-08-30
 */
@Data
public class TjRuleAdvice extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    @ApiModelProperty("主键id")
    @JsonSerialize(using = ToStringSerializer.class)
    private String gid;
 
    /**
     * 病种id
     */
    @Excel(name = "病种id")
    private String bz;
 
    /**
     * 病种名
     */
    @Excel(name = "病种名")
    private String bzmc;
 
    /**
     * 建议
     */
    @Excel(name = "建议")
    private String jy;
 
    /**
     * 简写
     */
    @Excel(name = "简写")
    private String zjf;
 
    /**
     * 病种编码
     */
    @Excel(name = "病种编码")
    private String icdcode;
 
 
 
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("gid", getGid())
                .append("bz", getBz())
                .append("bzmc", getBzmc())
                .append("jy", getJy())
                .append("zjf", getZjf())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .append("createId", getCreateId())
                .append("updateId", getUpdateId())
                .toString();
    }
}