aebbd8cbc34d2f664336345870c9e35cb86f2566.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.goldenwater.dcproj.service.impl.keyreg;
  2. import cn.com.goldenwater.dcproj.dao.AttEmpwtprjBaseDao;
  3. import cn.com.goldenwater.dcproj.model.AttEmpwtprjBase;
  4. import cn.com.goldenwater.dcproj.param.AttEmpwtprjBaseParam;
  5. import cn.com.goldenwater.dcproj.service.AttEmpwtprjBaseService;
  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 lhc
  14. * @date 2019-4-20
  15. */
  16. @Service
  17. @Transactional(rollbackFor = Exception.class)
  18. public class AttEmpwtprjBaseServiceImpl extends AbstractCrudService<AttEmpwtprjBase, AttEmpwtprjBaseParam> implements AttEmpwtprjBaseService {
  19. @Autowired
  20. private AttEmpwtprjBaseDao attEmpwtprjBaseDao;
  21. public AttEmpwtprjBaseServiceImpl(AttEmpwtprjBaseDao attEmpwtprjBaseDao) {
  22. super(attEmpwtprjBaseDao);
  23. this.attEmpwtprjBaseDao = attEmpwtprjBaseDao;
  24. }
  25. @Override
  26. public AttEmpwtprjBase getObjId(String objId) {
  27. return attEmpwtprjBaseDao.getObjId(objId);
  28. }
  29. }