1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.yeshi.fanli.service.inter.user.cloud;
|
| import com.yeshi.fanli.entity.bus.user.cloud.UserCloudManage;
|
| public interface UserCloudManageService {
|
| /**
| * 保存信息
| * @param uid
| * @param official
| * @param custom
| */
| public void save(Long uid, Boolean official, Boolean custom);
|
| /**
| * 根据id查询
| * @param uid
| * @return
| */
| public UserCloudManage selectByPrimaryKey(Long uid);
|
| }
|
|