123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package com.kcim.dao.model;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- /**
- * 资质字典表
- *
- * @author jinhu
- * @date 2024-11-10 22:19:35
- */
- @Data
- @Accessors(chain = true)
- @AllArgsConstructor
- @NoArgsConstructor
- @TableName("com_qualification")
- public class Qualification implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId
- private Integer id;
- /**
- * 资质编码
- */
- private String code;
- /**
- * 资质分类编码
- */
- private String qualificationTypeCode;
- /**
- * 资质名称
- */
- private String name;
- /**
- * 授权依据
- */
- private String standard;
- /**
- * 医疗技术标志 0 否 1 是
- */
- private Integer techFlag;
- /**
- * 手术标志 0 否 1 是
- */
- private Integer operationFlag;
- /**
- * 手术级别code
- */
- private String operationLevelCode;
- /**
- * 创建人
- */
- @JsonIgnore
- private String createUser;
- /**
- * 创建时间
- */
- @JsonIgnore
- private Date createTime;
- /**
- * 更新人
- */
- @JsonIgnore
- private String updateUser;
- /**
- * 更新时间
- */
- @JsonIgnore
- private Date updateTime;
- /**
- * 删除人
- */
- @JsonIgnore
- private String deleteUser;
- /**
- * 删除时间
- */
- @JsonIgnore
- private Date deleteTime;
- /**
- * 医院id
- */
- private Long hospId;
- /**
- * 启用标志 0 停用 1 启用
- */
- private Integer enableFlag;
- /**
- * 删除标志 0正常 1作废
- */
- @JsonIgnore
- @TableLogic(value = "0",delval = "1")
- private Integer delFlag;
- }
|