package com.ruoyi.management.service;
|
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.utils.page.PageDTO;
|
import com.ruoyi.management.domain.SlGoodsShelf;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.management.domain.dto.GoodsShelfDTO;
|
import com.ruoyi.management.domain.dto.GoodsShelfQuery;
|
import com.ruoyi.management.domain.dto.SlGoodsShelfDTO;
|
import com.ruoyi.management.domain.dto.SlGoodsShelfQuery;
|
import com.ruoyi.management.domain.vo.SlGoodsShelfVO;
|
import io.swagger.annotations.ApiParam;
|
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 货架表 服务类
|
* </p>
|
*
|
* @author hjl
|
* @since 2024-06-25
|
*/
|
public interface SlGoodsShelfService extends IService<SlGoodsShelf> {
|
PageDTO<SlGoodsShelfVO> getGoodsShelfList(@RequestBody SlGoodsShelfQuery slGoodsShelfQuery);
|
|
R addSlGoodsShelf(@RequestBody SlGoodsShelfDTO slGoodsShelfDTO);
|
|
SlGoodsShelfVO getSlGoodsShelfOne( Long id);
|
|
List<SlGoodsShelf> wfanzGoodsShelfList(@RequestBody GoodsShelfQuery goodsShelfQuery);
|
|
void fanzGoodsShelfList(@RequestBody GoodsShelfDTO goodsShelfDTO);
|
|
List<SlGoodsShelf> getStoreManagementimgSheif(@RequestBody GoodsShelfDTO goodsShelfDTO);
|
|
List<SlGoodsShelf> getGoodsSheManagementlfList(@RequestBody SlGoodsShelfQuery slGoodsShelfQuery);
|
}
|