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);
|
|
}
|