package cn.com.goldenwater.dcproj.service.impl.waga; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.BisInspWagaBaseDao; import cn.com.goldenwater.dcproj.model.BisInspWagaBase; import cn.com.goldenwater.dcproj.param.BisInspWagaBaseParam; import cn.com.goldenwater.dcproj.service.BisInspWagaBaseService; 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 2020-4-15 */ @Service @Transactional public class BisInspWagaBaseServiceImpl extends AbstractCrudService implements BisInspWagaBaseService { @Autowired private BisInspWagaBaseDao bisInspWagaBaseDao; public BisInspWagaBaseServiceImpl(BisInspWagaBaseDao bisInspWagaBaseDao) { super(bisInspWagaBaseDao); this.bisInspWagaBaseDao = bisInspWagaBaseDao; } @Override public List getBy(BisInspWagaBase biwb) { return bisInspWagaBaseDao.getBy(biwb); } }