admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/service/impl/user/cloud/UserCloudSendContentServiceImpl.java
@@ -1,30 +1,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);
   }
}
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);
   }
}