| | |
| | | package com.yeshi.fanli.service.inter.user.cloud;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.cloud.UserCloudSendContent;
|
| | |
|
| | | public interface UserCloudSendContentService {
|
| | | |
| | |
|
| | | /**
|
| | | * 保存
|
| | | * @param record
|
| | | * @return
|
| | | */
|
| | | public UserCloudSendContent save(UserCloudSendContent record);
|
| | | |
| | | }
|
| | | package com.yeshi.fanli.service.inter.user.cloud; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.cloud.UserCloudSendContent; |
| | | |
| | | public interface UserCloudSendContentService { |
| | | |
| | | |
| | | /** |
| | | * 保存 |
| | | * @param record |
| | | * @return |
| | | */ |
| | | public UserCloudSendContent save(UserCloudSendContent record); |
| | | |
| | | /** |
| | | * 查询具体内容 |
| | | * @param uid |
| | | * @param pid |
| | | * @return |
| | | */ |
| | | public List<UserCloudSendContent> getByPid(String pid); |
| | | |
| | | } |