DepotService.java
944 Bytes
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
41
42
43
44
45
46
47
48
49
50
package com.ruoyi.service.service;
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.service.domain.*;
import java.util.List;
/**
* 部门管理 服务层
*
* @author ruoyi
*/
public interface DepotService
{
List<Tree> treeSelect();
List<Depot> depotList(Depot depot);
List<Region> regionList(Region region);
List<Column> columnList(Column column);
List<Node> nodeList(Node node);
AjaxResult addDepot(JSONObject jsonObject);
AjaxResult addRegion(JSONObject jsonObject);
AjaxResult addColumn(JSONObject jsonObject);
AjaxResult addNode(JSONObject jsonObject);
AjaxResult updDepot(JSONObject jsonObject);
AjaxResult updRegion(JSONObject jsonObject);
AjaxResult updColumn(JSONObject jsonObject);
int delDepot(Long[] ids);
int delRegion(Long[] ids);
int deColumn(Long[] ids);
int delNode(Long[] ids);
}