xiaoyong931011
2021-04-08 d6e902a48df4264d6dbf6ff0c9799c3c30c9d9ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.matrix.system.shopXcx.dao;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.shopXcx.bean.ShopOrderSearch;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @description 订单搜索接口
 * @author huarray
 * @date 2019-06-27 18:20
 */
public interface ShopOrderSearchDao {
 
    List<ShopOrderSearch> selectInPageByQuery(@Param("record") ShopOrderSearch shopOrderSearch, @Param("pageVo") PaginationVO pageVo);
 
    int selectTotalRecordByQuery(@Param("record") ShopOrderSearch shopOrderSearch);
}