| 12345678910111213141516171819202122232425262728293031323334353637 |
- package cn.com.goldenwater.dcproj.service.impl.keyreg;
- import cn.com.goldenwater.dcproj.dao.ObjKeyPblmsDao;
- import cn.com.goldenwater.dcproj.model.ObjKeyPblms;
- import cn.com.goldenwater.dcproj.param.KeyPblmParams;
- import cn.com.goldenwater.dcproj.param.ObjKeyPblmsParam;
- import cn.com.goldenwater.dcproj.service.ObjKeyPblmsService;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import com.github.pagehelper.PageHelper;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-4-28
- */
- @Service
- @Transactional
- public class ObjKeyPblmsServiceImpl extends AbstractCrudService<ObjKeyPblms, ObjKeyPblmsParam> implements ObjKeyPblmsService {
- @Autowired
- private ObjKeyPblmsDao objKeyPblmsDao;
- public ObjKeyPblmsServiceImpl(ObjKeyPblmsDao objKeyPblmsDao) {
- super(objKeyPblmsDao);
- this.objKeyPblmsDao = objKeyPblmsDao;
- }
- @Override
- public List<ObjKeyPblms> findKeyPblms(ObjKeyPblmsParam pblmsParam) {
- return objKeyPblmsDao.findKeyPblmsNew(pblmsParam);
- }
- }
|