26 lines
640 B
Java
26 lines
640 B
Java
package com.peanut.modules.book.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.peanut.common.utils.PageUtils;
|
|
import com.peanut.modules.book.entity.BuyOrderDetailEntity;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 商品订单详情表
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-29 15:27:44
|
|
*/
|
|
public interface BuyOrderDetailService extends IService<BuyOrderDetailEntity> {
|
|
|
|
PageUtils queryPage(Map<String, Object> params);
|
|
|
|
PageUtils querySheet(Map<String, Object> params);
|
|
|
|
PageUtils querybuy(Map<String,Object>params);
|
|
|
|
void batchUpdateByShippingSns(String[] shippingSnList);
|
|
}
|