zjh
2025-03-26 21ce50faebc1acb413f5bcb722daf817cce69f33
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
package com.ltkj.hosp.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
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;
 
/**
 * 体检配餐
 * 对象 tj_catering
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-02-17
 */
@Data
public class TjCatering extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
 
    /**
     * 配餐名称
     */
    @Excel(name = "配餐名称")
    private String cateringName;
 
    /**
     * 配餐详情
     */
    private String cateringInfo;
 
    /**
     * 营养描述
     */
    @Excel(name = "营养描述")
    private String nutritionDescription;
 
    /**
     * 价格最大值
     */
    @Excel(name = "价格最大值")
    private String priceGt;
 
    /**
     * 价格最小值
     */
    @Excel(name = "价格最小值")
    private String priceLg;
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getId() {
        return id;
    }
 
    public void setCateringName(String cateringName) {
        this.cateringName = cateringName;
    }
 
    public String getCateringName() {
        return cateringName;
    }
 
    public void setCateringInfo(String cateringInfo) {
        this.cateringInfo = cateringInfo;
    }
 
    public String getCateringInfo() {
        return cateringInfo;
    }
 
    public void setNutritionDescription(String nutritionDescription) {
        this.nutritionDescription = nutritionDescription;
    }
 
    public String getNutritionDescription() {
        return nutritionDescription;
    }
 
    public void setPriceGt(String priceGt) {
        this.priceGt = priceGt;
    }
 
    public String getPriceGt() {
        return priceGt;
    }
 
    public void setPriceLg(String priceLg) {
        this.priceLg = priceLg;
    }
 
    public String getPriceLg() {
        return priceLg;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("cateringName", getCateringName())
                .append("cateringInfo", getCateringInfo())
                .append("nutritionDescription", getNutritionDescription())
                .append("priceGt", getPriceGt())
                .append("priceLg", getPriceLg())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .toString();
    }
}