fix
Helius
2022-05-13 b8ca2ad7e570ab9986be3ea603ed49c9a6fe15af
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallMemberPayment;
import cc.mrbird.febs.mall.vo.AdminMallMemberPaymentVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface MallMemberPaymentMapper extends BaseMapper<MallMemberPayment> {
 
    MallMemberPayment selectByMemberId(@Param("memberId") Long memberId);
 
    AdminMallMemberPaymentVo getMallMemberPaymentInfoByMemberId(@Param("memberId")Long memberId);
}