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
| package com.ks.app.service;
|
| import com.ks.app.entity.AppInfo;
|
| /**
| * 应用服务
| */
| public interface AppService {
|
| /**
| * 根据code查询
| *
| * @param appKey
| * @return
| */
| public AppInfo getAppDetail(String appKey);
|
|
| /**
| * 根据code查询
| *
| * @param appKey
| * @return
| */
| public AppInfo getApp(String appKey);
| }
|
|