ee1dd80b99c5207d67eb454f2c9a6173c1c61617.svn-base 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service.impl.zhejiang;
  2. import cn.com.goldenwater.core.service.AbstractCrudService;
  3. import cn.com.goldenwater.dcproj.dao.AttZhejiangJgCheckDao;
  4. import cn.com.goldenwater.dcproj.model.AttZhejiangJgCheck;
  5. import cn.com.goldenwater.dcproj.param.AttZhejiangJgCheckParam;
  6. import cn.com.goldenwater.dcproj.service.AttZhejiangJgCheckService;
  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 2020-5-12
  13. */
  14. @Service
  15. @Transactional
  16. public class AttZhejiangJgCheckServiceImpl extends AbstractCrudService<AttZhejiangJgCheck, AttZhejiangJgCheckParam> implements AttZhejiangJgCheckService {
  17. @Autowired
  18. private AttZhejiangJgCheckDao attZhejiangJgCheckDao;
  19. public AttZhejiangJgCheckServiceImpl(AttZhejiangJgCheckDao attZhejiangJgCheckDao) {
  20. super(attZhejiangJgCheckDao);
  21. this.attZhejiangJgCheckDao = attZhejiangJgCheckDao;
  22. }
  23. }