liusheng
2024-11-27 e44f3f7b666394907a016488e79f788e7ed97a70
smartor/src/main/java/com/smartor/domain/Icd10Association.java
@@ -1,5 +1,7 @@
package com.smartor.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -9,18 +11,29 @@
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import java.util.Date;
/**
 * 疾病关联对象 icd10_association
 * 指标疾病对象 ivr_liba_target_icd10
 *
 * @author ruoyi
 * @date 2023-06-26
 * @date 2023-12-20
 */
@Data
@ApiModel(value = "Icd10Association", description = "疾病关联对象")
public class Icd10Association {
@ApiModel(value = "Icd10Association", description = "指标疾病对象")
public class Icd10Association extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /**
     * 自增ID
     */
    @ApiModelProperty(value = "主键")
    private Long id;
    /**
     * 疾病id
     */
    @ApiModelProperty(value = "疾病id")
    @Excel(name = "疾病id")
    private Long icd10id;
    /**
     * 疾病编码
@@ -36,19 +49,77 @@
    @Excel(name = "疾病名称")
    private String icd10name;
    /**
     * 问卷ID
     */
    @ApiModelProperty(value = "问卷ID")
    @Excel(name = "问卷ID")
    private Long svyid;
    /**
     * 更新时间
     * 机构ID
     */
    @ApiModelProperty(value = "更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updatetime;
    @ApiModelProperty(value = "机构ID")
    @Excel(name = " 机构ID ")
    private String orgid;
    /**
     * 删除标记
     */
    @ApiModelProperty(value = "删除标记")
    private String delFlag;
    /**
     * 上传标记
     */
    @ApiModelProperty(value = "上传标记")
    @Excel(name = " 上传标记 ")
    private Long isupload;
    /**
     * 上传时间
     */
    @ApiModelProperty(value = "上传时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
    private Date uploadTime;
    /**
     * 外部ID
     */
    @ApiModelProperty(value = "外部ID")
    @Excel(name = "外部ID ")
    private Long outid;
    /**
     * 1,指标 2,随访话术 3,随访模版  4,问卷话术 ;5,问卷模版 6,宣教
     */
    @ApiModelProperty(value = "1,指标 2,随访话术 3,随访模版  4,问卷话术 ;5,问卷模版 6,宣教")
    @Excel(name = "1,指标 2,随访话术 3,随访模版  4,问卷话术 ;5,问卷模版 6,宣教")
    private Long type;
    /**
     * 父ID
     */
    @ApiModelProperty(value = "父ID")
    @Excel(name = "父ID")
    private Long pid;
    /**
     * GUID
     */
    @ApiModelProperty(value = "GUID")
    @Excel(name = "GUID")
    private String guid;
    /**
     * pageNum
     */
    @ApiModelProperty(value = "pageNum")
    @Excel(name = "pageNum")
    private Integer pageNum;
    /**
     * pageSize
     */
    @ApiModelProperty(value = "pageSize")
    @Excel(name = "pageSize")
    private Integer pageSize;
    @ApiModelProperty(value = "是否分页")
    private Boolean isPage = true;
}