| 123456789101112131415161718192021 |
- package me.zhengjie.archives.service.impl;
- import me.zhengjie.archives.entity.GzArchivesExEntity;
- import me.zhengjie.archives.plus.AbstractServiceImpl;
- import me.zhengjie.archives.dao.IGzArchivesExDao;
- import me.zhengjie.archives.service.GzArchivesExService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
- * @since 2023-06-26
- */
- @Service
- public class GzArchivesExServiceImpl extends AbstractServiceImpl<IGzArchivesExDao, GzArchivesExEntity> implements GzArchivesExService {
- }
|