5a74154668865506940f21f0750f5a16d4a60181.svn-base 967 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.waga;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.AttWagaCrrctDao;
  4. import cn.com.goldenwater.dcproj.model.AttWagaCrrct;
  5. import cn.com.goldenwater.dcproj.param.AttWagaCrrctParam;
  6. import cn.com.goldenwater.dcproj.service.AttWagaCrrctService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. import org.springframework.transaction.annotation.Transactional;
  10. /**
  11. * @author lune
  12. * @date 2019-4-22
  13. */
  14. @Service
  15. @Transactional(rollbackFor = Exception.class)
  16. public class AttWagaCrrctServiceImpl extends AbstractCrudService<AttWagaCrrct, AttWagaCrrctParam> implements AttWagaCrrctService {
  17. @Autowired
  18. private AttWagaCrrctDao attWagaCrrctDao;
  19. public AttWagaCrrctServiceImpl(AttWagaCrrctDao attWagaCrrctDao) {
  20. super(attWagaCrrctDao);
  21. this.attWagaCrrctDao = attWagaCrrctDao;
  22. }
  23. }