liusheng
2024-11-22 5389773b2d1ae86daec68b00f67c3682dc907e01
smartor/src/main/java/com/smartor/domain/PatArchiveImport.java
@@ -35,21 +35,21 @@
     * 证件号码
     */
    @ApiModelProperty("证件号码")
    @Excel(name = "证件号码(必填)",cellType = Excel.ColumnType.STRING)
    @Excel(name = "证件号码(必填)", cellType = Excel.ColumnType.STRING)
    private String idcardno;
    /**
     * 手机号码
     */
    @ApiModelProperty("手机号码")
    @Excel(name = "手机号码(必填)",cellType = Excel.ColumnType.STRING)
    @Excel(name = "手机号码(必填)", cellType = Excel.ColumnType.STRING)
    private String telcode;
    /**
     * 批次名称
     */
    @ApiModelProperty("批次名称")
    @Excel(name = "批次名称",cellType = Excel.ColumnType.STRING)
    @Excel(name = "批次名称", cellType = Excel.ColumnType.STRING)
    private String batchName;
@@ -57,7 +57,7 @@
     * 患者编号
     */
    @ApiModelProperty("患者编号")
    @Excel(name = "患者编号",cellType = Excel.ColumnType.STRING)
    @Excel(name = "患者编号", cellType = Excel.ColumnType.STRING)
    private String patientno;
    /**
@@ -83,6 +83,13 @@
    @Excel(name = "年龄")
    private Long age;
    /**
     * 是否创建帐号
     */
    @ApiModelProperty("是否创建帐号")
    @Excel(name = "是否创建帐号:1 创建(默认)   2不创建")
    private Long account = 1L;
    /**
     * 微信openid
@@ -103,5 +110,17 @@
    @ApiModelProperty("批次号")
    private String batchNo;
    /**
     * pageNum
     */
    @ApiModelProperty("pageNum")
    private Integer pageNum;
    /**
     * pageSize
     */
    @ApiModelProperty("pageSize")
    private Integer pageSize;
}