12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package org.dromara.web.domain;
- import org.dromara.common.tenant.core.TenantEntity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.io.Serial;
- /**
- * 院内膳食主对象 hospital_meal_plan
- *
- * @author Lion Li
- * @date 2025-07-23
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("hospital_meal_plan")
- public class HospitalMealPlan extends TenantEntity {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /*结算管理Id*/
- private Long settlementId;
- /**
- * 看诊类型
- */
- private String type;
- /**
- * 患者ID
- */
- private Long patientId;
- /**
- * 门诊/住院号
- */
- private String outpatientNo;
- /**
- * 科室ID
- */
- private Long deptId;
- /**
- * 推荐/配餐开始日期
- */
- private Date recommendStartDate;
- /**
- * 推荐/配餐结束日期
- */
- private Date recommendEndDate;
- /**
- * 处方状态
- */
- private String status;
- private BigDecimal totalPrice;
- /**
- * 备注
- */
- private String remark;
- /**
- * 删除标志(0代表存在 1代表删除)
- */
- @TableLogic
- private String delFlag;
- }
|