4212b74874b2a861bb347ef3337f52831493b8a9.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. package cn.com.goldenwater.dcproj.service.impl.waga;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.BisInspWagaBaseDao;
  4. import cn.com.goldenwater.dcproj.model.BisInspWagaBase;
  5. import cn.com.goldenwater.dcproj.param.BisInspWagaBaseParam;
  6. import cn.com.goldenwater.dcproj.service.BisInspWagaBaseService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. import org.springframework.transaction.annotation.Transactional;
  10. import java.util.List;
  11. /**
  12. * @author lune
  13. * @date 2020-4-15
  14. */
  15. @Service
  16. @Transactional
  17. public class BisInspWagaBaseServiceImpl extends AbstractCrudService<BisInspWagaBase, BisInspWagaBaseParam> implements BisInspWagaBaseService {
  18. @Autowired
  19. private BisInspWagaBaseDao bisInspWagaBaseDao;
  20. public BisInspWagaBaseServiceImpl(BisInspWagaBaseDao bisInspWagaBaseDao) {
  21. super(bisInspWagaBaseDao);
  22. this.bisInspWagaBaseDao = bisInspWagaBaseDao;
  23. }
  24. @Override
  25. public List<BisInspWagaBase> getBy(BisInspWagaBase biwb) {
  26. return bisInspWagaBaseDao.getBy(biwb);
  27. }
  28. }