ConsultantResultTemplate.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package org.dromara.web.domain;
  2. import org.dromara.common.tenant.core.TenantEntity;
  3. import com.baomidou.mybatisplus.annotation.*;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import java.io.Serial;
  7. import java.util.Date;
  8. /**
  9. * 会诊结果模板对象 consultant_result_template
  10. *
  11. * @author Lion Li
  12. * @date 2025-07-08
  13. */
  14. @Data
  15. @EqualsAndHashCode(callSuper = true)
  16. @TableName("consultant_result_template")
  17. public class ConsultantResultTemplate extends TenantEntity {
  18. @Serial
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. *
  22. */
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. /**
  26. * 模板名称
  27. */
  28. private String templateName;
  29. /**
  30. * 模板类型id
  31. */
  32. private Long templateTypeId;
  33. /**
  34. * 描述
  35. */
  36. private String description;
  37. /**
  38. * 正文
  39. */
  40. private String content;
  41. /**
  42. * 创建部门
  43. */
  44. private Long createDept;
  45. /**
  46. * 创建部门
  47. */
  48. private Long updateDept;
  49. /**
  50. * 创建者
  51. */
  52. private Long createBy;
  53. /**
  54. * 创建时间
  55. */
  56. private Date createTime;
  57. /**
  58. * 更新者
  59. */
  60. private Long updateBy;
  61. /**
  62. * 更新时间
  63. */
  64. private Date updateTime;
  65. /**
  66. * 删除标志(0代表存在 1代表删除)
  67. */
  68. @TableLogic
  69. private String delFlag;
  70. }