| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service.impl.waga;
- import cn.com.goldenwater.core.service.AbstractCrudService;
- import cn.com.goldenwater.dcproj.dao.AttWagaCrrctDao;
- import cn.com.goldenwater.dcproj.model.AttWagaCrrct;
- import cn.com.goldenwater.dcproj.param.AttWagaCrrctParam;
- import cn.com.goldenwater.dcproj.service.AttWagaCrrctService;
- 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(rollbackFor = Exception.class)
- public class AttWagaCrrctServiceImpl extends AbstractCrudService<AttWagaCrrct, AttWagaCrrctParam> implements AttWagaCrrctService {
- @Autowired
- private AttWagaCrrctDao attWagaCrrctDao;
- public AttWagaCrrctServiceImpl(AttWagaCrrctDao attWagaCrrctDao) {
- super(attWagaCrrctDao);
- this.attWagaCrrctDao = attWagaCrrctDao;
- }
- }
|