无关风月
2024-08-28 1c4311135628b53daa336821ff452292a9d063e9
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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);
}