36 lines
738 B
Java
36 lines
738 B
Java
package com.sunnyfarm.dto;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class AdminDashboardDTO {
|
|
|
|
// 用户统计
|
|
private Long totalUsers;
|
|
private Long newUsersToday;
|
|
|
|
// 商家统计
|
|
private Long totalMerchants;
|
|
private Long pendingMerchants;
|
|
|
|
// 订单统计
|
|
private Long totalOrders;
|
|
private Long newOrdersToday;
|
|
|
|
// 商品统计
|
|
private Long totalProducts;
|
|
private Long pendingProducts;
|
|
|
|
// 收入统计
|
|
private Double totalRevenue;
|
|
private Double todayRevenue;
|
|
|
|
// 待处理事项
|
|
private Long pendingComplaints;
|
|
|
|
// 系统信息
|
|
private String systemVersion;
|
|
private LocalDateTime lastUpdateTime;
|
|
}
|