src/main/java/cc/mrbird/febs/mall/mapper/MallMemberWithdrawMapper.java
@@ -2,6 +2,10 @@ 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); }