liusheng
2025-08-12 a9a4fbbc8a071869ef298c7b9adf457ef3c88b37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.smartor.domain;
 
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 服务统计响应结果
 *
 * @author smartor
 * @date 2025-01-14
 */
@ApiModel(value = "ServiceStatisticsResponse", description = "服务统计响应结果")
@Data
public class ServiceStatisticsResponse {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "时间周期")
    @Excel(name = "时间周期")
    private String timePeriod;
 
    @ApiModelProperty(value = "出院随访量")
    @Excel(name = "出院随访量")
    private Long dischargeFollowCount = 0L;
 
    @ApiModelProperty(value = "门诊随访量")
    @Excel(name = "门诊随访量")
    private Long outpatientFollowCount = 0L;
 
 
    @ApiModelProperty(value = "出院人次")
    @Excel(name = "出院人次")
    private Long pmiCount = 0L;
 
    @ApiModelProperty(value = "门诊人次")
    @Excel(name = "门诊人次")
    private Long pmoCount = 0L;
}