yujian
2020-06-18 52bc8ff0de3c7538d1401423c1cba9615c0c2082
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
27
28
29
30
package com.yeshi.fanli.service.impl.user.cloud;
 
import java.util.List;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.user.cloud.UserCloudSendContentDao;
import com.yeshi.fanli.entity.bus.user.cloud.UserCloudSendContent;
import com.yeshi.fanli.service.inter.user.cloud.UserCloudSendContentService;
 
@Service
public class UserCloudSendContentServiceImpl implements UserCloudSendContentService {
 
    
    @Resource
    private UserCloudSendContentDao userCloudSendContentDao;
 
    
    @Override
    public UserCloudSendContent save(UserCloudSendContent record){
        return userCloudSendContentDao.save(record);
    }
    
    @Override
    public List<UserCloudSendContent> getByPid(String pid){
        return userCloudSendContentDao.getByPid(pid);
    }
}