package cn.com.goldenwater.dcproj.service.impl.rdwsp; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.BisRdwspRgstrRelVillDao; import cn.com.goldenwater.dcproj.model.BisRdwspRgstrRelVill; import cn.com.goldenwater.dcproj.param.BisRdwspRgstrRelVillParam; import cn.com.goldenwater.dcproj.service.BisRdwspRgstrRelVillService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2020-10-9 */ @Service @Transactional(rollbackFor = Exception.class) public class BisRdwspRgstrRelVillServiceImpl extends AbstractCrudService implements BisRdwspRgstrRelVillService { @Autowired private BisRdwspRgstrRelVillDao bisRdwspRgstrRelVillDao; public BisRdwspRgstrRelVillServiceImpl(BisRdwspRgstrRelVillDao bisRdwspRgstrRelVillDao) { super(bisRdwspRgstrRelVillDao); this.bisRdwspRgstrRelVillDao = bisRdwspRgstrRelVillDao; } }