zjh
2025-02-21 2c785c3d4513daea9deb5c7edbb17a9f17111d25
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
package com.ltkj.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ltkj.common.annotation.Excel;
import com.ltkj.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 体检导检单打印记录对象 tj_djd_dyjl
 *
 * @author ltkj
 * @date 2024-10-25
 */
@Data
public class TjDjdDyjl extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * $column.columnComment
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    @Excel(name = "患者姓名")
    private String hzxm;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "体检号")
    private String tjNum;
 
 
    /**
     * $column.columnComment
     */
    @Excel(name = "就诊号")
    private String cardId;
 
    @Excel(name = "打印类型")
    private String dylx;
 
    /**
     * 打印次数
     */
    @Excel(name = "打印次数")
    private Long dycs;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "打印时间")
    private Date dysj;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private String beginTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(exist = false)
    private String endTime;
 
 
    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 setCardId(String cardId) {
        this.cardId = cardId;
    }
 
    public String getCardId() {
        return cardId;
    }
 
    public void setDycs(Long dycs) {
        this.dycs = dycs;
    }
 
    public Long getDycs() {
        return dycs;
    }
 
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("tjNum", getTjNum())
                .append("cardId", getCardId())
                .append("dycs", getDycs())
                .append("createTime", getCreateTime())
                .append("createBy", getCreateBy())
                .append("updateTime", getUpdateTime())
                .append("updateBy", getUpdateBy())
                .append("deleted", getDeleted())
                .toString();
    }
}