Helius
2021-06-25 cb7237fd719262eb01ecc6060773ad0f6f79f34c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.xzx.gc.shop.mapper;
 
import com.xzx.gc.entity.ScoreOrder;
import com.xzx.gc.shop.dto.QueryOrderListDto;
import com.xzx.gc.shop.vo.QueryOrderListVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.Date;
import java.util.List;
 
public interface ScoreOrderMapper extends GcMapper<ScoreOrder> {
 
    List<QueryOrderListVo> queryOrderList(@Param("name")String name,
                                          @Param("orderNo")String orderNo,
                                          @Param("status")Integer status,
                                          @Param("createdTimeStart")Date createdTimeStart,
                                          @Param("createdTimeEnd")Date createdTimeEnd);
}