chore(project): rebranded project as 恭学教育 (GongXue Education)
Some checks failed
Deploy to Runner / deploy (push) Failing after 6m7s

- 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

@@ -20,7 +20,7 @@ import java.io.FileNotFoundException;
/**
* {@link PayClientFactoryImpl} 的集成测试
*
* @author 芋道源码
* @author 恭学教育
*/
@Disabled
public class PayClientFactoryImplIntegrationTest {

View File

@@ -23,7 +23,7 @@ import static cn.iocoder.yudao.module.pay.framework.pay.core.client.impl.weixin.
/**
* {@link WxBarPayClient} 的集成测试,用于快速调试微信条码支付
*
* @author 芋道源码
* @author 恭学教育
*/
@Disabled
public class WxBarPayClientIntegrationTest {

View File

@@ -21,7 +21,7 @@ import static cn.iocoder.yudao.module.pay.framework.pay.core.client.impl.weixin.
/**
* {@link WxNativePayClient} 的集成测试,用于快速调试微信扫码支付
*
* @author 芋道源码
* @author 恭学教育
*/
@Disabled
public class WxNativePayClientIntegrationTest {

View File

@@ -36,7 +36,7 @@ import static org.mockito.Mockito.when;
*
* @author aquan
*/
@Disabled // TODO 芋艿:后续 fix 补充的单测
@Disabled // TODO 管理员:后续 fix 补充的单测
@Import(PayAppServiceImpl.class)
public class PayAppServiceTest extends BaseDbUnitTest {

View File

@@ -45,9 +45,9 @@ import static org.mockito.Mockito.*;
/**
* {@link PayRefundServiceImpl} 的单元测试类
*
* @author 芋艿
* @author 管理员
*/
@Disabled // TODO 芋艿:后续 fix 补充的单测
@Disabled // TODO 管理员:后续 fix 补充的单测
@Import({PayJobConfiguration.class, PayNotifyServiceImpl.class, PayNotifyLockRedisDAO.class})
public class PayNotifyServiceTest extends BaseDbUnitTest {

View File

@@ -52,7 +52,7 @@ import static org.mockito.Mockito.*;
/**
* {@link PayOrderServiceImpl} 的单元测试类
*
* @author 芋艿
* @author 管理员
*/
@Import({PayOrderServiceImpl.class, PayNoRedisDAO.class})
public class PayOrderServiceTest extends BaseDbAndRedisUnitTest {
@@ -357,7 +357,7 @@ public class PayOrderServiceTest extends BaseDbAndRedisUnitTest {
when(client.unifiedOrder(argThat(payOrderUnifiedReqDTO -> {
assertNotNull(payOrderUnifiedReqDTO.getOutTradeNo());
assertThat(payOrderUnifiedReqDTO)
// .extracting("subject", "body", "notifyUrl", "returnUrl", "price", "expireTime") // TODO @芋艿win11 下,时间不太准
// .extracting("subject", "body", "notifyUrl", "returnUrl", "price", "expireTime") // TODO @管理员win11 下,时间不太准
.extracting("subject", "body", "notifyUrl", "returnUrl", "price")
.containsExactly(order.getSubject(), order.getBody(), "http://127.0.0.1/10",
// reqVO.getReturnUrl(), order.getPrice(), order.getExpireTime());
@@ -413,7 +413,7 @@ public class PayOrderServiceTest extends BaseDbAndRedisUnitTest {
when(client.unifiedOrder(argThat(payOrderUnifiedReqDTO -> {
assertNotNull(payOrderUnifiedReqDTO.getOutTradeNo());
assertThat(payOrderUnifiedReqDTO)
// .extracting("subject", "body", "notifyUrl", "returnUrl", "price", "expireTime") // TODO @芋艿win11 下,时间不太准
// .extracting("subject", "body", "notifyUrl", "returnUrl", "price", "expireTime") // TODO @管理员win11 下,时间不太准
.extracting("subject", "body", "notifyUrl", "returnUrl", "price")
.containsExactly(order.getSubject(), order.getBody(), "http://127.0.0.1/10",
// reqVO.getReturnUrl(), order.getPrice(), order.getExpireTime());

View File

@@ -51,7 +51,7 @@ import static org.mockito.Mockito.*;
/**
* {@link PayRefundServiceImpl} 的单元测试类
*
* @author 芋艿
* @author 管理员
*/
@Import({PayRefundServiceImpl.class, PayNoRedisDAO.class})
public class PayRefundServiceTest extends BaseDbAndRedisUnitTest {

View File

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

View File

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