Qualification.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.kcim.dao.model;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableLogic;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import com.fasterxml.jackson.annotation.JsonIgnore;
  8. import lombok.AllArgsConstructor;
  9. import lombok.Data;
  10. import lombok.NoArgsConstructor;
  11. import lombok.experimental.Accessors;
  12. /**
  13. * 资质字典表
  14. *
  15. * @author jinhu
  16. * @date 2024-11-10 22:19:35
  17. */
  18. @Data
  19. @Accessors(chain = true)
  20. @AllArgsConstructor
  21. @NoArgsConstructor
  22. @TableName("com_qualification")
  23. public class Qualification implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. /**
  26. * 主键
  27. */
  28. @TableId
  29. private Integer id;
  30. /**
  31. * 资质编码
  32. */
  33. private String code;
  34. /**
  35. * 资质分类编码
  36. */
  37. private String qualificationTypeCode;
  38. /**
  39. * 资质名称
  40. */
  41. private String name;
  42. /**
  43. * 授权依据
  44. */
  45. private String standard;
  46. /**
  47. * 医疗技术标志 0 否 1 是
  48. */
  49. private Integer techFlag;
  50. /**
  51. * 手术标志 0 否 1 是
  52. */
  53. private Integer operationFlag;
  54. /**
  55. * 手术级别code
  56. */
  57. private String operationLevelCode;
  58. /**
  59. * 创建人
  60. */
  61. @JsonIgnore
  62. private String createUser;
  63. /**
  64. * 创建时间
  65. */
  66. @JsonIgnore
  67. private Date createTime;
  68. /**
  69. * 更新人
  70. */
  71. @JsonIgnore
  72. private String updateUser;
  73. /**
  74. * 更新时间
  75. */
  76. @JsonIgnore
  77. private Date updateTime;
  78. /**
  79. * 删除人
  80. */
  81. @JsonIgnore
  82. private String deleteUser;
  83. /**
  84. * 删除时间
  85. */
  86. @JsonIgnore
  87. private Date deleteTime;
  88. /**
  89. * 医院id
  90. */
  91. private Long hospId;
  92. /**
  93. * 启用标志 0 停用 1 启用
  94. */
  95. private Integer enableFlag;
  96. /**
  97. * 删除标志 0正常 1作废
  98. */
  99. @JsonIgnore
  100. @TableLogic(value = "0",delval = "1")
  101. private Integer delFlag;
  102. }