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