package cn.lihu.jh.module.ecg.controller.admin.queue.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Schema(description = "管理后台 - 患者统计 Response VO")
|
@Data
|
public class PatientStatisticVO {
|
|
private Integer finishedNum;
|
|
private Integer readyNum;
|
|
private Integer receivedNum;
|
|
private Integer passedNum;
|
|
private Integer queuingNum;
|
}
|