package com.smartor.domain; import com.ruoyi.common.annotation.Excel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * 服务统计响应结果 * * @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; }