KKSU
2023-11-21 990c09c842d87d1f179e3a0070541da0457b8393
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.mall.conversion;
 
import cc.mrbird.febs.mall.dto.UpdatePaymentDto;
import cc.mrbird.febs.mall.entity.MallMemberPayment;
import cc.mrbird.febs.mall.vo.MallMemberPaymentVo;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
 
@Mapper
public abstract class MallMemberPaymentConversion {
    public static final MallMemberPaymentConversion INSTANCE = Mappers.getMapper(MallMemberPaymentConversion.class);
 
    public abstract MallMemberPaymentVo entityToVo(MallMemberPayment mallMemberPayment);
 
}