IDevServiceDAO.java
929 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
51
52
package com.java110.dev.dao;
import com.java110.dto.privilege.BasePrivilegeDto;
import com.java110.dto.system.BusinessDatabusDto;
import com.java110.dto.system.BusinessTableHisDto;
import com.java110.dto.mapping.Mapping;
import java.util.List;
import java.util.Map;
/**
* Created by wuxw on 2018/4/14.
*/
public interface IDevServiceDAO {
/**
* 查询所有组件
*
* @return
*/
public List<Map> getAppRouteAndServiceInfoAll();
/**
* 查询映射表
*
* @return
*/
public List<Mapping> getMappingInfoAll();
/**
* 查询映射表
*
* @return
*/
public List<BasePrivilegeDto> getPrivilegeAll();
/**
* 查询映射表
*
* @return
*/
public List<BusinessDatabusDto> getDatabusAll();
/**
* 查询映射表
*
* @return
*/
public List<BusinessTableHisDto> getBusinessTableHisAll();
}