package cn.iocoder.yudao.module.statistics.controller.admin.trade.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Schema(description = "管理后台 - 交易订单统计 Response VO")
|
@Data
|
public class TradeOrderSummaryRespVO {
|
|
@Schema(description = "支付订单商品数", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
private Integer orderPayCount;
|
|
@Schema(description = "总支付金额", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
private Integer orderPayPrice;
|
|
}
|