package cn.com.goldenwater.dcproj.service.impl.keyreg; import cn.com.goldenwater.dcproj.dao.AttEmpwtprjBaseDao; import cn.com.goldenwater.dcproj.model.AttEmpwtprjBase; import cn.com.goldenwater.dcproj.param.AttEmpwtprjBaseParam; import cn.com.goldenwater.dcproj.service.AttEmpwtprjBaseService; 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 lhc * @date 2019-4-20 */ @Service @Transactional(rollbackFor = Exception.class) public class AttEmpwtprjBaseServiceImpl extends AbstractCrudService implements AttEmpwtprjBaseService { @Autowired private AttEmpwtprjBaseDao attEmpwtprjBaseDao; public AttEmpwtprjBaseServiceImpl(AttEmpwtprjBaseDao attEmpwtprjBaseDao) { super(attEmpwtprjBaseDao); this.attEmpwtprjBaseDao = attEmpwtprjBaseDao; } @Override public AttEmpwtprjBase getObjId(String objId) { return attEmpwtprjBaseDao.getObjId(objId); } }