757b99f03337f199b6e0bbbe5f1d201192d4c13e.svn-base 1014 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service.impl.wiu;
  2. import cn.com.goldenwater.dcproj.dao.AttWiuIntPlDao;
  3. import cn.com.goldenwater.dcproj.model.AttWiuIntPl;
  4. import cn.com.goldenwater.dcproj.param.AttWiuIntPlParam;
  5. import cn.com.goldenwater.dcproj.service.AttWiuIntPlService;
  6. import cn.com.goldenwater.core.service.AbstractCrudService;
  7. import com.github.pagehelper.PageHelper;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.stereotype.Service;
  10. import org.springframework.transaction.annotation.Transactional;
  11. import java.util.List;
  12. /**
  13. * @author lune
  14. * @date 2019-8-9
  15. */
  16. @Service
  17. @Transactional(rollbackFor = Exception.class)
  18. public class AttWiuIntPlServiceImpl extends AbstractCrudService<AttWiuIntPl, AttWiuIntPlParam> implements AttWiuIntPlService {
  19. @Autowired
  20. private AttWiuIntPlDao attWiuIntPlDao;
  21. public AttWiuIntPlServiceImpl(AttWiuIntPlDao attWiuIntPlDao) {
  22. super(attWiuIntPlDao);
  23. this.attWiuIntPlDao = attWiuIntPlDao;
  24. }
  25. }