131da34d2e56a3b517967c8bebbf4936232f3c9a.svn-base 1003 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service.impl.system;
  2. import cn.com.goldenwater.dcproj.dao.RelPblmPblmsDao;
  3. import cn.com.goldenwater.dcproj.model.RelPblmPblms;
  4. import cn.com.goldenwater.dcproj.param.RelPblmPblmsParam;
  5. import cn.com.goldenwater.dcproj.service.RelPblmPblmsService;
  6. import cn.com.goldenwater.core.service.AbstractCrudService;
  7. import com.github.pagehelper.PageHelper;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.stereotype.Service;
  10. import org.springframework.transaction.annotation.Transactional;
  11. import java.util.List;
  12. /**
  13. * @author lune
  14. * @date 2019-2-19
  15. */
  16. @Service
  17. @Transactional
  18. public class RelPblmPblmsServiceImpl extends AbstractCrudService<RelPblmPblms, RelPblmPblmsParam> implements RelPblmPblmsService {
  19. @Autowired
  20. private RelPblmPblmsDao relPblmPblmsDao;
  21. public RelPblmPblmsServiceImpl(RelPblmPblmsDao relPblmPblmsDao) {
  22. super(relPblmPblmsDao);
  23. this.relPblmPblmsDao = relPblmPblmsDao;
  24. }
  25. }