| | |
| | | package com.smartor.domain.VO; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "就诊类型(1门诊 2出院 3.专病 4.外部导入 5急诊、6住院、7体检)") |
| | | private String hospType; |
| | | |
| | | @ApiModelProperty(value = "机构ID") |
| | | private String orgid; |
| | | |
| | | @ApiModelProperty("发送状态") |
| | | private String sendstate; |
| | | |
| | | @ApiModelProperty("完成状态(0未完成 1已完成 对应finishtime是否有值)") |
| | | private String isFinished; |
| | | |
| | | @ApiModelProperty("超链接统计列表类型") |
| | | private String hyperLinkInfoType; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty("pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty("pageSize") |
| | | private Integer pageSize; |
| | | |
| | | } |