2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
 
}