2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.iocoder.yudao.module.pay.convert.wallet;
 
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.pay.controller.admin.wallet.vo.wallet.PayWalletRespVO;
import cn.iocoder.yudao.module.pay.controller.app.wallet.vo.wallet.AppPayWalletRespVO;
import cn.iocoder.yudao.module.pay.dal.dataobject.wallet.PayWalletDO;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
 
@Mapper
public interface PayWalletConvert {
 
    PayWalletConvert INSTANCE = Mappers.getMapper(PayWalletConvert.class);
 
    AppPayWalletRespVO convert(PayWalletDO bean);
 
    PayWalletRespVO convert02(PayWalletDO bean);
 
    PageResult<PayWalletRespVO> convertPage(PageResult<PayWalletDO> page);
 
}