zjh
2024-01-23 3fbed744dae198ae9743f21a611e9e1ff096e0be
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package com.ltkj.hosp.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ltkj.common.annotation.Excel;
import com.ltkj.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.List;
 
/**
 * 纯音听阈测试对象 tj_pure_tone_test
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-04-12
 */
@Data
@ApiModel(value = "纯音听阈测试")
public class TjPureToneTest extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 体检号
     */
    @Excel(name = "体检号")
    @ApiModelProperty(value = "体检号")
    private String tjNum;
 
    /**
     * 客户id
     */
    @ApiModelProperty(value = "客户id")
    private String cusId;
 
    /**
     * 客户名
     */
    @Excel(name = "客户名")
    @ApiModelProperty(value = "客户名")
    private String cusName;
 
    /**
     * 电测听图
     */
    @Excel(name = "电测听图")
    @ApiModelProperty(value = "电测听图")
    private String dctt;
 
    /**
     * 项目名
     */
    @Excel(name = "项目名")
    @ApiModelProperty(value = "项目名")
    private String proName;
 
    /**
     * 收费项目id
     */
    @Excel(name = "收费项目id")
    @ApiModelProperty(value = "收费项目id")
    private String chargePro;
 
    /**
     * 测定值
     */
    @Excel(name = "测定值")
    @ApiModelProperty(value = "测定值")
    private String measuredValue;
 
    /**
     * 修定值
     */
    @Excel(name = "修定值")
    @ApiModelProperty(value = "修定值")
    private String fixedValue;
 
    /**
     * 评价内容
     */
    @Excel(name = "评价内容")
    @ApiModelProperty(value = "评价内容")
    private String appraise;
 
 
    @TableField(exist = false)
    private String picturePath;
 
    /**
     * 纯音听阈测试结果值存储对象
     */
    @TableField(exist = false)
    private List<TjPureToneTestDetil> pureToneTestDetils;
 
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setTjNum(String tjNum) {
        this.tjNum = tjNum;
    }
 
    public String getTjNum() {
        return tjNum;
    }
 
    public void setCusId(String cusId) {
        this.cusId = cusId;
    }
 
    public String getCusId() {
        return cusId;
    }
 
    public void setCusName(String cusName) {
        this.cusName = cusName;
    }
 
    public String getCusName() {
        return cusName;
    }
 
    public void setDctt(String dctt) {
        this.dctt = dctt;
    }
 
    public String getDctt() {
        return dctt;
    }
 
    public void setProName(String proName) {
        this.proName = proName;
    }
 
    public String getProName() {
        return proName;
    }
 
    public void setChargePro(String chargePro) {
        this.chargePro = chargePro;
    }
 
    public String getChargePro() {
        return chargePro;
    }
 
    public void setMeasuredValue(String measuredValue) {
        this.measuredValue = measuredValue;
    }
 
    public String getMeasuredValue() {
        return measuredValue;
    }
 
    public void setFixedValue(String fixedValue) {
        this.fixedValue = fixedValue;
    }
 
    public String getFixedValue() {
        return fixedValue;
    }
 
    public void setAppraise(String appraise) {
        this.appraise = appraise;
    }
 
    public String getAppraise() {
        return appraise;
    }
 
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("tjNum", getTjNum())
                .append("cusId", getCusId())
                .append("cusName", getCusName())
                .append("dctt", getDctt())
                .append("proName", getProName())
                .append("chargePro", getChargePro())
                .append("measuredValue", getMeasuredValue())
                .append("fixedValue", getFixedValue())
                .append("appraise", getAppraise())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .toString();
    }
}