New file |
| | |
| | | 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); |
| | | } |