| 12345678910111213141516171819202122232425262728293031323334 |
- 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<BisInspWagaBase, BisInspWagaBaseParam> implements BisInspWagaBaseService {
- @Autowired
- private BisInspWagaBaseDao bisInspWagaBaseDao;
- public BisInspWagaBaseServiceImpl(BisInspWagaBaseDao bisInspWagaBaseDao) {
- super(bisInspWagaBaseDao);
- this.bisInspWagaBaseDao = bisInspWagaBaseDao;
- }
- @Override
- public List<BisInspWagaBase> getBy(BisInspWagaBase biwb) {
- return bisInspWagaBaseDao.getBy(biwb);
- }
- }
|