123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- package com.project.zcustom.domain.smart;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonInclude;
- import com.project.common.annotation.Excel;
- import com.project.common.core.domain.CustomBaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.ToString;
- import lombok.experimental.Accessors;
- /**
- * 绿智食堂对象 plat_green_smart
- *
- * @author change
- * @date 2024-10-31
- */
- @Data
- @Accessors(chain = true)
- @ToString(callSuper = true)
- @EqualsAndHashCode(callSuper = false)
- @TableName("large_plat_green_smart")
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class PlatGreenSmart extends CustomBaseEntity {
- /**
- * 主键id
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 地区编码
- */
- @Excel(name = "地区编码")
- private String appOrg;
- /**
- * 食堂名称
- */
- @Excel(name = "食堂名称")
- private String canteenNum;
- /**
- * 食堂类型
- */
- @Excel(name = "食堂类型")
- private String canteenType;
- /**
- * 食堂面积 平方米
- */
- @Excel(name = "食堂面积 平方米")
- private Long areaNum;
- /**
- * 座位数量
- */
- @Excel(name = "座位数量")
- private Long seatsNum;
- /**
- * 管理人员
- */
- @Excel(name = "管理人员")
- private Long managementNum;
- /**
- * 厨师人数
- */
- @Excel(name = "厨师人数")
- private Long chefsNum;
- /**
- * 服务人员
- */
- @Excel(name = "服务人员")
- private Long serviceNum;
- /**
- * 厨师服务员总数
- */
- @Excel(name = "厨师服务员总数")
- @TableField(exist = false)
- private Long totalPersonNum;
- /**
- * 健康证数量
- */
- @Excel(name = "健康证数量")
- private Long healthNum;
- /**
- * 许可证数量
- */
- @Excel(name = "许可证数量")
- private Long licenceNum;
- /**
- * 菜品卫生 评分
- */
- @Excel(name = "菜品卫生 评分")
- private Integer dishHygieneScore;
- /**
- * 菜品口味 评分
- */
- @Excel(name = "菜品口味 评分")
- private Integer tasteDishesScore;
- /**
- * 服务态度 评分
- */
- @Excel(name = "服务态度 评分")
- private Integer attitudeScore;
- /**
- * 餐具卫生 评分
- */
- @Excel(name = "餐具卫生 评分")
- private Integer tablewareScore;
- /**
- * 菜品种类 评分
- */
- @Excel(name = "菜品种类 评分")
- private Integer typesDishesScore;
- /**
- * 就餐体验 评分
- */
- @Excel(name = "就餐体验 评分")
- private Integer diningScore;
- /**
- * 其它人员
- */
- @Excel(name = "其它人员")
- private Long personnelNum;
- /**
- * 服务就餐人数
- */
- @Excel(name = "服务就餐人数")
- private Long serviceDinersNum;
- /**
- * 平均分
- */
- @Excel(name = "平均分")
- @TableField(exist = false)
- private Long totalScore;
- /**
- * 食堂数量
- */
- @Excel(name = "食堂数量")
- @TableField(exist = false)
- private String canteenTotalNumber;
- /**
- * 食堂数量
- */
- @Excel(name = "自建食堂数量")
- @TableField(exist = false)
- private String selfCanteenNumber;
- /**
- * 食堂数量
- */
- @Excel(name = "外包食堂数量")
- @TableField(exist = false)
- private String outsourceCanteenNumber;
- }
|