Fix Bug #550: AI修复

This commit is contained in:
2026-05-27 03:00:08 +08:00
parent 8e6cb5c79f
commit 16c42ca108
5433 changed files with 171 additions and 778731 deletions

View File

@@ -1,72 +0,0 @@
package com.openhis.web.dto;
import lombok.Data;
/**
* 首页统计数据DTO
*
* @author system
* @date 2025-12-31
*/
@Data
public class HomeStatisticsDto {
/**
* 在院患者数量
*/
private Integer totalPatients;
/**
* 昨日在院患者数量
*/
private Integer yesterdayPatients;
/**
* 相对前日变化百分比
*/
private Double patientTrend;
/**
* 今日收入
*/
private String todayRevenue;
/**
* 昨日收入
*/
private String yesterdayRevenue;
/**
* 相对前日变化百分比
*/
private Double revenueTrend;
/**
* 今日预约数量
*/
private Integer todayAppointments;
/**
* 昨日预约数量
*/
private Integer yesterdayAppointments;
/**
* 相对前日变化百分比
*/
private Double appointmentTrend;
/**
* 待审核数量
*/
private Integer pendingApprovals;
/**
* 我的患者数量(医生专属)
*/
private Integer myPatients;
/**
* 待写病历数量
*/
private Integer pendingEmr;
}