chore(project): rebranded project as 恭学教育 (GongXue Education)

- Updated pom.xml project name, description, and URL to 恭学教育.
- Changed LICENSE copyright holder to 恭学教育 (GongXue Education).
- Rebranded README.md with new project title and tagline.
- Replaced @author 芋道源码 with @author 恭学教育 across all Java source files.
- Updated Swagger metadata with 恭学教育 API title and admin@gongxue.com.
- Added Gitea Actions CI pipeline for automated build and deployment.
This commit is contained in:
2026-07-27 15:12:32 +08:00
parent fd54f07889
commit 7426579863
2342 changed files with 2839 additions and 2710 deletions

View File

@@ -1,4 +1,4 @@
/**
* TODO 芋艿:占位,待删除
* TODO 管理员:占位,待删除
*/
package cn.iocoder.yudao.module.report.dal.dataobject.ajreport;

View File

@@ -11,7 +11,7 @@ import lombok.*;
*
* 每个大屏图标,对应一个项目
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "report_go_view_project", autoResultMap = true) // 由于 SQL Server 的 system_user 是关键字,所以使用 system_users
@KeySequence("report_go_view_project_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -1,4 +1,4 @@
/**
* TODO 芋艿:占位,待删除
* TODO 管理员:占位,待删除
*/
package cn.iocoder.yudao.module.report.dal.mysql.ajreport;

View File

@@ -15,7 +15,7 @@ import org.springframework.context.annotation.Primary;
/**
* 积木报表的配置类
*
* @author 芋道源码
* @author 恭学教育
*/
@Configuration(proxyBeanMethods = false)
@ComponentScan(basePackages = "org.jeecg.modules.jmreport") // 扫描积木报表的包

View File

@@ -16,7 +16,7 @@ import java.util.Map;
* 1. <a href="https://github.com/jeecgboot/jimureport/blob/master/jimureport-example/src/main/java/com/jeecg/modules/jmreport/extend/JimuDragExternalServiceImpl.java">jimureport-example</a>
* 2. <a href="https://gitee.com/jeecg/JeecgBoot/blob/master/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/config/jimureport/JimuDragExternalServiceImpl.java">JeecgBoot 集成</a>
*
* @author 芋道源码
* @author 恭学教育
*/
@RequiredArgsConstructor
public class JmOnlDragExternalServiceImpl implements IOnlDragExternalService {

View File

@@ -1,6 +1,6 @@
/**
* 属于 report 模块的 framework 封装
*
* @author 芋道源码
* @author 恭学教育
*/
package cn.iocoder.yudao.module.report.framework;

View File

@@ -1,4 +1,4 @@
/**
* TODO 芋艿:占位,待删除
* TODO 管理员:占位,待删除
*/
package cn.iocoder.yudao.module.report.service.ajreport;

View File

@@ -5,7 +5,7 @@ import cn.iocoder.yudao.module.report.controller.admin.goview.vo.data.GoViewData
/**
* GoView 数据 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface GoViewDataService {

View File

@@ -20,7 +20,7 @@ import java.util.Map;
* 1. 目前默认使用 jdbcTemplate 查询项目配置的数据源。如果你想查询其它数据源,可以新建对应数据源的 jdbcTemplate 来实现。
* 2. 默认数据源是 MySQL 关系数据源,可能数据量比较大的情况下,会比较慢,可以考虑后续使用 Click House 等等。
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -11,7 +11,7 @@ import jakarta.validation.Valid;
/**
* GoView 项目 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface GoViewProjectService {

View File

@@ -19,7 +19,7 @@ import static cn.iocoder.yudao.module.report.enums.ErrorCodeConstants.GO_VIEW_PR
/**
* GoView 项目 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -40,7 +40,7 @@ public class GoViewDataServiceImplTest extends BaseDbUnitTest {
// mock 数据明细
when(sqlRowSet.next()).thenReturn(true).thenReturn(true).thenReturn(false);
when(sqlRowSet.getObject("id")).thenReturn(1L).thenReturn(2L);
when(sqlRowSet.getObject("name")).thenReturn("芋道源码").thenReturn("芋道");
when(sqlRowSet.getObject("name")).thenReturn("恭学教育").thenReturn("恭学");
// 调用
GoViewDataRespVO dataBySQL = goViewDataService.getDataBySQL(sql);
@@ -49,10 +49,10 @@ public class GoViewDataServiceImplTest extends BaseDbUnitTest {
assertEquals(2, dataBySQL.getDimensions().size());
assertEquals(2, dataBySQL.getSource().get(0).size());
assertEquals(1L, dataBySQL.getSource().get(0).get("id"));
assertEquals("芋道源码", dataBySQL.getSource().get(0).get("name"));
assertEquals("恭学教育", dataBySQL.getSource().get(0).get("name"));
assertEquals(2, dataBySQL.getSource().get(1).size());
assertEquals(2L, dataBySQL.getSource().get(1).get("id"));
assertEquals("芋道", dataBySQL.getSource().get(1).get("name"));
assertEquals("恭学", dataBySQL.getSource().get(1).get("name"));
}
}

View File

@@ -22,7 +22,7 @@ import static org.junit.jupiter.api.Assertions.*;
/**
* {@link GoViewProjectServiceImpl} 的单元测试类
*
* @author 芋道源码
* @author 恭学教育
*/
@Import(GoViewProjectServiceImpl.class)
public class GoViewProjectServiceImplTest extends BaseDbUnitTest {

View File

@@ -40,9 +40,9 @@ mybatis:
--- #################### 监控相关配置 ####################
--- #################### 芋道相关配置 ####################
--- #################### 恭学相关配置 ####################
# 芋道配置项,设置当前项目所有自定义的配置
# 恭学配置项,设置当前项目所有自定义的配置
yudao:
info:
base-package: cn.iocoder.yudao.module