xin
2025-06-24 b5e0a4f030f4741825b7a8d3d65bc1c2ba616ea1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.oying.modules.sh.mapper;
 
import com.oying.modules.sh.domain.OrderProductSnapshot;
import com.oying.modules.sh.domain.dto.OrderProductSnapshotQueryCriteria;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 
/**
* @author lixin
* @date 2025-06-11
**/
@Mapper
public interface OrderProductSnapshotMapper extends BaseMapper<OrderProductSnapshot> {
 
    IPage<OrderProductSnapshot> findAll(@Param("criteria") OrderProductSnapshotQueryCriteria criteria, Page<Object> page);
 
    List<OrderProductSnapshot> findAll(@Param("criteria") OrderProductSnapshotQueryCriteria criteria);
}