2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.iocoder.yudao.module.statistics.controller.admin.member.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 会员终端统计 Response VO")
@Data
public class MemberTerminalStatisticsRespVO {
 
    @Schema(description = "终端", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer terminal;
 
    // TODO @疯狂:要不 orderCreateUserCount 和 orderPayUserCount 貌似更统一一些;
    @Schema(description = "会员数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Integer userCount;
 
}