增加首页统计数据方法
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run

This commit is contained in:
lxd 2024-08-22 10:36:50 +08:00
parent 510581e4f5
commit 9d7962a0c9
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package cn.iocoder.yudao.module.applyregistration.controller.admin.applyform.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@Data
@ToString(callSuper = true)
public class ApplyformCountVO {
@Schema(description = "总数")
private String totalcount;
@Schema(description = "未分检")
private String wfj;
@Schema(description = "未检查")
private String wjc;
@Schema(description = "已检查")
private String yjc;
@Schema(description = "已放弃")
private String yfq;
}

View File

@ -0,0 +1,30 @@
package cn.iocoder.yudao.module.tblist.controller.admin.patientexamlist.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@Data
@ToString(callSuper = true)
public class PatientexamlistCountVO {
@Schema(description = "阳性")
private String yx;
@Schema(description = "阴性")
private String y;
@Schema(description = "总数")
private String totalcount;
@Schema(description = "重大阳性")
private String zdyx;
@Schema(description = "")
private String F;
@Schema(description = "")
private String M;
@Schema(description = "日期")
private String date;
}