parent
6fbb7d6d6d
commit
7aa1ecceeb
@ -0,0 +1,13 @@ |
||||
package cn.iocoder.yudao.module.statistics.controller.admin.pay.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
@Schema(description = "管理后台 - 支付统计 Response VO") |
||||
@Data |
||||
public class PaySummaryRespVO { |
||||
|
||||
@Schema(description = "充值金额,单位分", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
||||
private Integer rechargePrice; |
||||
|
||||
} |
@ -0,0 +1,19 @@ |
||||
package cn.iocoder.yudao.module.statistics.convert.pay; |
||||
|
||||
import cn.iocoder.yudao.module.statistics.controller.admin.pay.vo.PaySummaryRespVO; |
||||
import org.mapstruct.Mapper; |
||||
import org.mapstruct.factory.Mappers; |
||||
|
||||
/** |
||||
* 支付统计 Convert |
||||
* |
||||
* @author owen |
||||
*/ |
||||
@Mapper |
||||
public interface PayStatisticsConvert { |
||||
|
||||
PayStatisticsConvert INSTANCE = Mappers.getMapper(PayStatisticsConvert.class); |
||||
|
||||
PaySummaryRespVO convert(Integer rechargePrice); |
||||
|
||||
} |
@ -0,0 +1,41 @@ |
||||
package cn.iocoder.yudao.module.statistics.service.trade.bo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 会员地区统计 Response BO |
||||
* |
||||
* @author owen |
||||
*/ |
||||
@Data |
||||
public class MemberAreaStatisticsRespBO { |
||||
|
||||
/** |
||||
* 省份编号 |
||||
*/ |
||||
private Integer areaId; |
||||
/** |
||||
* 省份名称 |
||||
*/ |
||||
private String areaName; |
||||
|
||||
/** |
||||
* 会员数量 |
||||
*/ |
||||
private Integer userCount; |
||||
|
||||
/** |
||||
* 下单的会员数量 |
||||
*/ |
||||
private Integer orderCreateUserCount; |
||||
/** |
||||
* 支付订单的会员数量 |
||||
*/ |
||||
private Integer orderPayUserCount; |
||||
|
||||
/** |
||||
* 订单支付金额,单位:分 |
||||
*/ |
||||
private Integer orderPayPrice; |
||||
|
||||
} |
Loading…
Reference in new issue