@@ -0,0 +1,72 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user