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