彭雪彬
2025-07-14 c1d20b425b10e8ba59f102dd1ab413055883eed0
oying-system/src/main/java/com/oying/modules/sh/mapper/OrderProductSnapshotMapper.java
New file
@@ -0,0 +1,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);
}