KKSU
2023-11-22 c3793ad938cefba5fa76258d70e0cbc37bcf151c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallProductSellRecord;
import cc.mrbird.febs.mall.vo.ApiOrderSellRecordInfoVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface MallProductSellRecordMapper extends BaseMapper<MallProductSellRecord> {
 
    List<ApiOrderSellRecordInfoVo> selectBySellId(@Param("productSellId")Long productSellId);
 
    List<MallProductSellRecord> selectListBySellId(@Param("sellId")Long sellId,@Param("state")Integer state);
}