1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.yeshi.fanli.service.inter.config;
|
| import java.util.List;
|
| import com.yeshi.fanli.entity.system.System;
|
| public interface SystemService {
|
| public com.yeshi.fanli.entity.system.System getSystem(String platform, String packages);
|
|
| public System getSystemCache(String platform, String packages);
|
| public List<System> getSystems();
|
| /**
| * 通过id查询
| * @param id
| * @return
| */
| public System getById(long id);
|
| }
|
|