xin
2025-07-02 84277cefdc270f88cd9f2ece3419a428495c7cf2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
 
    List<OrderProductSnapshot> queryOrderProductSnapshot(String orderNum);
}