Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsMealReport.java
Joshi 93f3708f64 feat(WmsMealReport): 添加堂食和打包人员名单字段
- 在WmsMealReport实体类中新增dineInPeopleList和takeoutPeopleList字段
- 在WmsMealReportBo业务对象中添加对应的人员名单属性
- 更新WmsMealReportMapper.xml映射文件,添加新的结果映射
- 在WmsMealReportVo视图对象中增加人员名单相关字段
2026-01-21 13:57:10 +08:00

78 lines
1.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
* 部门报餐主对象 wms_meal_report
*
* @author klp
* @date 2026-01-17
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_meal_report")
public class WmsMealReport extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "report_id")
private Long reportId;
/**
* 用餐日期
*/
private Date reportDate;
/**
* 餐别1早餐 2午餐 3晚餐 4夜宵
*/
private Long mealType;
/**
* 部门名称
*/
private String deptName;
/**
* 用餐总人数
*/
private Long totalPeople;
/**
* 堂食人数
*/
private Long dineInPeople;
/**
* 打包人数
*/
private Long takeoutPeople;
/**
* 报餐人姓名
*/
private String reportUserName;
/**
* 状态1已提交 2已修改 3已作废
*/
private Long status;
/**
* 逻辑删除标识0=正常1=已删
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
// 堂食人名单
private String dineInPeopleList;
// 打包人名单
private String takeoutPeopleList;
}