package org.jeecg.modules.eam.service.impl;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.jeecg.modules.eam.entity.DocumentType;
|
import org.jeecg.modules.eam.mapper.DocumentTypeMapper;
|
import org.jeecg.modules.eam.service.IDocumentTypeService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: 文档类型
|
* @Author: houjie
|
* @Date: 2023-03-06
|
* @Version: V1.0
|
*/
|
@Service
|
public class DocumentTypeServiceImpl extends ServiceImpl<DocumentTypeMapper, DocumentType> implements IDocumentTypeService {
|
|
}
|