FrontsheetQualityVerification.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package thyyxxk.webserver.entity.casefrontsheet;
  2. import java.io.Serializable;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableField;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import lombok.Data;
  8. import thyyxxk.webserver.constants.Gender;
  9. import thyyxxk.webserver.entity.casefrontsheet.state.AuditState;
  10. import java.util.Date;
  11. /**
  12. * 病案质控申请与审核
  13. * */
  14. @Data
  15. @TableName(value = "t_frontsheet_quality_verification")
  16. public class FrontsheetQualityVerification implements Serializable {
  17. /**
  18. * 唯一主键
  19. */
  20. @TableId(type = IdType.INPUT)
  21. private String id;
  22. /**
  23. * 患者住院号
  24. */
  25. private String patNo;
  26. /**
  27. * 患者住院次数
  28. */
  29. private Integer times;
  30. /**
  31. * 患者姓名
  32. */
  33. private String patName;
  34. /**
  35. * 患者性别
  36. */
  37. private Gender patGender;
  38. /**
  39. * 医生编码
  40. */
  41. private String doctorCode;
  42. /**
  43. * 医生姓名
  44. */
  45. private String doctorName;
  46. /**
  47. * 出院科室编码
  48. * */
  49. private String disDeptCode;
  50. /**
  51. * 出院科室编码
  52. * */
  53. private String disDeptName;
  54. /**
  55. * 申请时间
  56. */
  57. private Date applicationTime;
  58. /**
  59. * 审核状态
  60. */
  61. private AuditState auditState;
  62. /**
  63. * 审核人员编码
  64. */
  65. private String auditStaffCode;
  66. /**
  67. * 审核人员姓名
  68. */
  69. private String auditStaffName;
  70. /**
  71. * 审核时间
  72. */
  73. private Date auditTime;
  74. /**
  75. * 审核备注
  76. */
  77. private String auditRemark;
  78. @TableField(exist = false)
  79. private CaseFrontsheetMain sheet;
  80. }