|
|
@@ -0,0 +1,20 @@ |
|
|
|
package com.ningdatech.pmapi.filemanage.service.impl; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
import com.ningdatech.pmapi.filemanage.mapper.DocumentationMapper; |
|
|
|
import com.ningdatech.pmapi.filemanage.model.entity.Documentation; |
|
|
|
import com.ningdatech.pmapi.filemanage.service.IDocumentationService; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
/** |
|
|
|
* <p> |
|
|
|
* 服务实现类 |
|
|
|
* </p> |
|
|
|
* |
|
|
|
* @author Poffy |
|
|
|
* @since 2023-02-13 |
|
|
|
*/ |
|
|
|
@Service |
|
|
|
public class DocumentationServiceImpl extends ServiceImpl<DocumentationMapper, Documentation> implements IDocumentationService { |
|
|
|
|
|
|
|
} |