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
| 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);
|
| }
|
|