Administrator
2025-05-21 5fea0979a485fde02e3a76d6d3786f4182c9c9e2
1
2
3
4
5
6
7
8
9
10
11
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallMemberWithdraw;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface MallMemberWithdrawMapper extends BaseMapper<MallMemberWithdraw> {
 
    MallMemberWithdraw selectByWithDrawNoAndMemberIdAndState(@Param("withdrawNo")String withdrawNo, @Param("memberId")Long id, @Param("status")Integer i);
 
}