f1fc511dc814777d33a5ac83a75ce266f0bc5896.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package cn.com.goldenwater.dcproj.service.impl.keyreg;
  2. import cn.com.goldenwater.dcproj.dao.ObjKeyPblmsDao;
  3. import cn.com.goldenwater.dcproj.model.ObjKeyPblms;
  4. import cn.com.goldenwater.dcproj.param.KeyPblmParams;
  5. import cn.com.goldenwater.dcproj.param.ObjKeyPblmsParam;
  6. import cn.com.goldenwater.dcproj.service.ObjKeyPblmsService;
  7. import cn.com.goldenwater.core.service.AbstractCrudService;
  8. import com.github.pagehelper.PageHelper;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.stereotype.Service;
  11. import org.springframework.transaction.annotation.Transactional;
  12. import java.util.List;
  13. /**
  14. * @author lune
  15. * @date 2019-4-28
  16. */
  17. @Service
  18. @Transactional
  19. public class ObjKeyPblmsServiceImpl extends AbstractCrudService<ObjKeyPblms, ObjKeyPblmsParam> implements ObjKeyPblmsService {
  20. @Autowired
  21. private ObjKeyPblmsDao objKeyPblmsDao;
  22. public ObjKeyPblmsServiceImpl(ObjKeyPblmsDao objKeyPblmsDao) {
  23. super(objKeyPblmsDao);
  24. this.objKeyPblmsDao = objKeyPblmsDao;
  25. }
  26. @Override
  27. public List<ObjKeyPblms> findKeyPblms(ObjKeyPblmsParam pblmsParam) {
  28. return objKeyPblmsDao.findKeyPblmsNew(pblmsParam);
  29. }
  30. }