You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.glxp.api.service.inv;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.glxp.api.entity.inv.StockCompareDetailEntity;
|
|
|
|
import com.glxp.api.req.inv.InvProductDetailSelectQuery;
|
|
|
|
import com.glxp.api.req.inv.InvProductDetailSelectRequest;
|
|
|
|
import com.glxp.api.res.inv.StockCompareDetailResponse;
|
|
|
|
import com.glxp.api.service.CustomService;
|
|
|
|
import com.glxp.api.vo.inv.InvProductDetailSelectVo;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 针对表【inv_stock_compare_detail】的数据库操作Service实现
|
|
|
|
*/
|
|
|
|
public interface StockCompareDetailService extends CustomService<StockCompareDetailEntity> {
|
|
|
|
|
|
|
|
Page<InvProductDetailSelectVo> invProductDetailSelectPage(InvProductDetailSelectQuery query);
|
|
|
|
|
|
|
|
|
|
|
|
List<StockCompareDetailResponse> filterCompareDetail(InvProductDetailSelectRequest invProductDetailSelectRequest);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|