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.io.Serial; import java.util.Date; /** * 会诊结果模板对象 consultant_result_template * * @author Lion Li * @date 2025-07-08 */ @Data @EqualsAndHashCode(callSuper = true) @TableName("consultant_result_template") public class ConsultantResultTemplate extends TenantEntity { @Serial private static final long serialVersionUID = 1L; /** * */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 模板名称 */ private String templateName; /** * 模板类型id */ private Long templateTypeId; /** * 描述 */ private String description; /** * 正文 */ private String content; /** * 创建部门 */ private Long createDept; /** * 创建部门 */ private Long updateDept; /** * 创建者 */ private Long createBy; /** * 创建时间 */ private Date createTime; /** * 更新者 */ private Long updateBy; /** * 更新时间 */ private Date updateTime; /** * 删除标志(0代表存在 1代表删除) */ @TableLogic private String delFlag; }