yujian
2020-06-01 d48079c9eeec9c4f19f550a44d461275b4a31fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yeshi.fanli.service.impl.user.cloud;
 
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);
    }
}