package cn.com.goldenwater.dcproj.service.impl.rsvr; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.BisInspRsvrRgstrChkInfoDao; import cn.com.goldenwater.dcproj.model.BisInspRsvrRgstrChkInfo; import cn.com.goldenwater.dcproj.param.BisInspRsvrRgstrChkInfoParam; import cn.com.goldenwater.dcproj.service.BisInspRsvrRgstrChkInfoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2021年4月14日 */ @Service @Transactional(rollbackFor = Exception.class) public class BisInspRsvrRgstrChkInfoServiceImpl extends AbstractCrudService implements BisInspRsvrRgstrChkInfoService { @Autowired private BisInspRsvrRgstrChkInfoDao bisInspRsvrRgstrChkInfoDao; public BisInspRsvrRgstrChkInfoServiceImpl(BisInspRsvrRgstrChkInfoDao bisInspRsvrRgstrChkInfoDao) { super(bisInspRsvrRgstrChkInfoDao); this.bisInspRsvrRgstrChkInfoDao = bisInspRsvrRgstrChkInfoDao; } }