| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service.impl.waga;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import cn.com.goldenwater.dcproj.dao.BisInspWagaSafeManageDao;
- import cn.com.goldenwater.dcproj.model.BisInspWagaSafeManage;
- import cn.com.goldenwater.dcproj.param.BisInspWagaSafeManageParam;
- import cn.com.goldenwater.dcproj.service.BisInspWagaSafeManageService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- /**
- * @author lune
- * @date 2019-4-22
- */
- @Service
- @Transactional
- public class BisInspWagaSafeManageServiceImpl extends AbstractCrudService<BisInspWagaSafeManage, BisInspWagaSafeManageParam> implements BisInspWagaSafeManageService {
- @Autowired
- private BisInspWagaSafeManageDao bisInspWagaSafeManageDao;
- public BisInspWagaSafeManageServiceImpl(BisInspWagaSafeManageDao bisInspWagaSafeManageDao) {
- super(bisInspWagaSafeManageDao);
- this.bisInspWagaSafeManageDao = bisInspWagaSafeManageDao;
- }
- }
|