xiaoyong931011
2021-06-25 a27a4871c8b214e2ba3e5f1e557ae53e683206a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xzx.gc.shop.mapper;
 
import com.xzx.gc.entity.JhyOrder;
import com.xzx.gc.shop.dto.QueryJhyOrderListDto;
import com.xzx.gc.shop.vo.QueryJhyOrderListVo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface JhyOrderMapper  extends GcMapper<JhyOrder> {
 
    List<QueryJhyOrderListVo> queryOrderList(@Param("record") QueryJhyOrderListDto model);
 
}