| | |
| | | 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);
|
| | |
|
| | | /**
|
| | | * 查询
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public UserCloudManage selectForUpdate(Long uid);
|
| | |
|
| | | public void updateByPrimaryKeySelective(UserCloudManage record);
|
| | |
|
| | | }
|
| | | 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); |
| | | |
| | | /** |
| | | * 查询 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public UserCloudManage selectForUpdate(Long uid); |
| | | |
| | | public void updateByPrimaryKeySelective(UserCloudManage record); |
| | | |
| | | } |