12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package com.diagbot.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 量表
- * </p>
- *
- * @author zhoutg
- * @since 2021-12-20
- */
- @TableName("prec_scale")
- @Data
- public class Scale implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 是否删除,N:未删除,Y:删除
- */
- private String isDeleted;
- /**
- * 记录创建时间
- */
- private Date gmtCreate;
- /**
- * 记录修改时间,如果时间是1970年则表示纪录未修改
- */
- private Date gmtModified;
- /**
- * 创建人,0表示无创建人值
- */
- private String creator;
- /**
- * 修改人,如果为0则表示纪录未修改
- */
- private String modifier;
- /**
- * 问诊记录id
- */
- private Long inquiryId;
- /**
- * 量表名称
- */
- private String scaleName;
- /**
- * 得分
- */
- private String score;
- /**
- * 结果
- */
- private String result;
- /**
- * json数据
- */
- private String dataJson;
- /**
- * 备注
- */
- private String remark;
- }
|