NutritionScreening.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.math.BigDecimal;
  7. import java.util.Date;
  8. import com.fasterxml.jackson.annotation.JsonFormat;
  9. import java.io.Serial;
  10. /**
  11. * 营养筛查对象 nutrition_screening
  12. *
  13. * @author Lion Li
  14. * @date 2025-07-14
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = true)
  18. @TableName("nutrition_screening")
  19. public class NutritionScreening extends TenantEntity {
  20. @Serial
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * 主键ID
  24. */
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Long id;
  27. /**
  28. * 结算管理id
  29. */
  30. private Long settlementId;
  31. /**
  32. * 患者ID
  33. */
  34. private Long patientId;
  35. /**
  36. * 营养筛查类型
  37. */
  38. private Long configId;
  39. /**
  40. * 筛查时间
  41. */
  42. private Date screeningTime;
  43. /**
  44. * 看诊类型(1门诊 2住院)
  45. */
  46. private String visitType;
  47. /**
  48. * 门诊/住院号
  49. */
  50. private String patientNo;
  51. /**
  52. * 营养筛查分数
  53. */
  54. private BigDecimal screeningScore;
  55. /**
  56. * 营养筛查结论
  57. */
  58. private String screeningConclusion;
  59. /**
  60. * 支付状态(未支付/已支付/已退款)
  61. */
  62. private String paymentStatus;
  63. /**
  64. * 状态(0正常 1停用)
  65. */
  66. private String status;
  67. /**
  68. * 删除标志(0代表存在 1代表删除)
  69. */
  70. @TableLogic
  71. private String delFlag;
  72. private String content;
  73. }