package cn.com.goldenwater.dcproj.service.impl.uplog; import cn.com.goldenwater.dcproj.dao.BisInspUplogDao; import cn.com.goldenwater.dcproj.dto.BisInspUplogDto; import cn.com.goldenwater.dcproj.model.BisInspUplog; import cn.com.goldenwater.dcproj.param.BisInspUplogParam; import cn.com.goldenwater.dcproj.service.BisInspUplogService; 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-10 */ @Service @Transactional public class BisInspUplogServiceImpl extends AbstractCrudService implements BisInspUplogService { @Autowired private BisInspUplogDao bisInspUplogDao; public BisInspUplogServiceImpl(BisInspUplogDao bisInspUplogDao) { super(bisInspUplogDao); this.bisInspUplogDao = bisInspUplogDao; } @Override public List findLogByPersonId(BisInspUplogParam bisInspUplogParam) { return bisInspUplogDao.findLogByPersonId(bisInspUplogParam); } }