package cc.mrbird.febs.mall.mapper; import cc.mrbird.febs.mall.entity.MallMemberWithdraw; import cc.mrbird.febs.mall.entity.MallMemberWithdrawMsg; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; public interface MallMemberWithdrawMapper extends BaseMapper { List selectListByMemberIdAndDate(@Param("memberId")Long memberId, @Param("date")Date date); MallMemberWithdrawMsg selectMsgByWithdrawNo(@Param("withdrawId")Long withdrawId); }