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();
|
}
|
}
|