zjh
2025-04-22 22efacd7994f8ea9a7ef8485575ade9729a0e5a2
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
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.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.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
/**
 * 重大阳性记录对象 tj_big_positive
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-12-04
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class TjBigPositive extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
 
    /**
     * 体检号
     */
    @Excel(name = "体检号")
    private String tjNumber;
 
    /**
     * 客户id
     */
    @Excel(name = "客户id")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long cusId;
 
    /**
     * 客户名
     */
    @Excel(name = "客户名")
    private String cusName;
 
    /**
     * 项目父项
     */
    @Excel(name = "项目父项")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long proParentId;
 
    /**
     * 项目子项
     */
    @Excel(name = "项目子项")
    @JsonSerialize(using = ToStringSerializer.class)
    private Long proId;
 
    /**
     * 项目名
     */
    @Excel(name = "项目名")
    private String proName;
 
    /**
     * 取消/添加标志
     */
    @Excel(name = "取消/添加标志")
    private String flag;
 
    /**
     * 等级
     */
    @Excel(name = "等级")
    private String level;
 
    @TableField(exist = false)
    @JsonSerialize(using = ToStringSerializer.class)
    private Long orderId;
}