新增企业信息、知识库、审计报告生成功能

This commit is contained in:
2025-09-17 11:45:57 +08:00
parent 85aaf911c6
commit 0f31c1e7c6
23 changed files with 1705 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.gxwebsoft.enterprise.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.gxwebsoft.enterprise.entity.Enterprise;
import com.gxwebsoft.enterprise.mapper.EnterpriseMapper;
import com.gxwebsoft.enterprise.service.EnterpriseService;
import org.springframework.stereotype.Service;
/**
*
* @author GIIT-YC
*
*/
@Service
public class EnterpriseServiceImpl extends ServiceImpl<EnterpriseMapper, Enterprise> implements EnterpriseService {
}