299cc073fce746a891a6bb5884eaa2fd7ae8085b.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service.impl.zhejiang;
  2. import cn.com.goldenwater.dcproj.dao.AttZhejiangJgBaseDao;
  3. import cn.com.goldenwater.dcproj.model.AttZhejiangJgBase;
  4. import cn.com.goldenwater.dcproj.param.AttZhejiangJgBaseParam;
  5. import cn.com.goldenwater.dcproj.service.AttZhejiangJgBaseService;
  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 2020-5-12
  15. */
  16. @Service
  17. @Transactional
  18. public class AttZhejiangJgBaseServiceImpl extends AbstractCrudService<AttZhejiangJgBase, AttZhejiangJgBaseParam> implements AttZhejiangJgBaseService {
  19. @Autowired
  20. private AttZhejiangJgBaseDao attZhejiangJgBaseDao;
  21. public AttZhejiangJgBaseServiceImpl(AttZhejiangJgBaseDao attZhejiangJgBaseDao) {
  22. super(attZhejiangJgBaseDao);
  23. this.attZhejiangJgBaseDao = attZhejiangJgBaseDao;
  24. }
  25. }