package cn.com.goldenwater.dcproj.service.impl; import cn.com.goldenwater.dcproj.dao.BisInspWtuntRgstrSteelReoDao; import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrSteelReo; import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrSteelReoParam; import cn.com.goldenwater.dcproj.service.BisInspWtuntRgstrSteelReoService; import cn.com.goldenwater.core.service.AbstractCrudService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2020-8-17 */ @Service @Transactional(rollbackFor = Exception.class) public class BisInspWtuntRgstrSteelReoServiceImpl extends AbstractCrudService implements BisInspWtuntRgstrSteelReoService { @Autowired private BisInspWtuntRgstrSteelReoDao bisInspWtuntRgstrSteelReoDao; public BisInspWtuntRgstrSteelReoServiceImpl(BisInspWtuntRgstrSteelReoDao bisInspWtuntRgstrSteelReoDao) { super(bisInspWtuntRgstrSteelReoDao); this.bisInspWtuntRgstrSteelReoDao = bisInspWtuntRgstrSteelReoDao; } }