xiaoyong931011
2022-09-02 30f13db308bb6c050a4aa44e10ae993dc4fb3bb4
1
2
3
4
5
6
7
8
9
10
11
12
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallOrderItem;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface MallOrderItemMapper extends BaseMapper<MallOrderItem> {
 
    List<MallOrderItem> selectItemByGoodsIdUnCancel(@Param("goodsId") Long goodsId, @Param("memberId") Long memberId);
}