| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service.impl.rdwsp;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import cn.com.goldenwater.dcproj.dao.BisRdwspRgstrPoorDao;
- import cn.com.goldenwater.dcproj.model.BisRdwspRgstrPoor;
- import cn.com.goldenwater.dcproj.param.BisRdwspRgstrPoorParam;
- import cn.com.goldenwater.dcproj.service.BisRdwspRgstrPoorService;
- 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 BisRdwspRgstrPoorServiceImpl extends AbstractCrudService<BisRdwspRgstrPoor, BisRdwspRgstrPoorParam> implements BisRdwspRgstrPoorService {
- @Autowired
- private BisRdwspRgstrPoorDao bisRdwspRgstrPoorDao;
- public BisRdwspRgstrPoorServiceImpl(BisRdwspRgstrPoorDao bisRdwspRgstrPoorDao) {
- super(bisRdwspRgstrPoorDao);
- this.bisRdwspRgstrPoorDao = bisRdwspRgstrPoorDao;
- }
- }
|