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