forked from kidgrow-microservices-platform

克 刘
2020-03-26 92cf3c01450a499915aa8fe97cd32a8c657c011c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.kidgrow.order.service;
 
import com.kidgrow.common.model.PageResult;
import com.kidgrow.common.service.ISuperService;
import com.kidgrow.order.entity.OrderInfoDetail;
 
import java.util.Map;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2020/3/26 18:16 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
public interface IOrderDetailService extends ISuperService<OrderInfoDetail> {
    /**
     * 列表
     * @param params
     * @return
     */
    PageResult<OrderInfoDetail> findList(Map<String, Object> params,String tableTag);
 
    PageResult<OrderInfoDetail> findListAll(Map<String, Object> params);
}