| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service.impl;
- import cn.com.goldenwater.dcproj.dao.BisInspWtuntRgstrHotelDao;
- import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrHotel;
- import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrHotelParam;
- import cn.com.goldenwater.dcproj.service.BisInspWtuntRgstrHotelService;
- 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 BisInspWtuntRgstrHotelServiceImpl extends AbstractCrudService<BisInspWtuntRgstrHotel, BisInspWtuntRgstrHotelParam> implements BisInspWtuntRgstrHotelService {
- @Autowired
- private BisInspWtuntRgstrHotelDao bisInspWtuntRgstrHotelDao;
- public BisInspWtuntRgstrHotelServiceImpl(BisInspWtuntRgstrHotelDao bisInspWtuntRgstrHotelDao) {
- super(bisInspWtuntRgstrHotelDao);
- this.bisInspWtuntRgstrHotelDao = bisInspWtuntRgstrHotelDao;
- }
- }
|