GzArchivesExServiceImpl.java 658 B

123456789101112131415161718192021
  1. package me.zhengjie.archives.service.impl;
  2. import me.zhengjie.archives.entity.GzArchivesExEntity;
  3. import me.zhengjie.archives.plus.AbstractServiceImpl;
  4. import me.zhengjie.archives.dao.IGzArchivesExDao;
  5. import me.zhengjie.archives.service.GzArchivesExService;
  6. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * <p>
  10. * 服务实现类
  11. * </p>
  12. *
  13. * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
  14. * @since 2023-06-26
  15. */
  16. @Service
  17. public class GzArchivesExServiceImpl extends AbstractServiceImpl<IGzArchivesExDao, GzArchivesExEntity> implements GzArchivesExService {
  18. }