KKSU
2023-12-21 a4bcd761572fd8760b33e7e01bfe941391b0d2e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallMqRecord;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface MallMqRecordMapper extends BaseMapper<MallMqRecord> {
 
    MallMqRecord selectByOrderId(@Param("orderId")long orderId);
 
    List<MallMqRecord> selectByStateLimitTen(@Param("state")int i);
}