Helius
2021-09-25 435cbed09a75895cfbaadc02ce95329598394185
1
2
3
4
5
6
7
8
9
10
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallMemberPayment;
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);
}