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

@@ -65,7 +65,7 @@ public class WmsCheckOrderRespVO {
@Schema(description = "创建者", example = "1")
private String creator;
@Schema(description = "创建者名称", example = "芋道")
@Schema(description = "创建者名称", example = "恭学")
private String creatorName;
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED)
@@ -73,7 +73,7 @@ public class WmsCheckOrderRespVO {
@Schema(description = "更新者", example = "1")
private String updater;
@Schema(description = "更新者名称", example = "芋道")
@Schema(description = "更新者名称", example = "恭学")
private String updaterName;
}

View File

@@ -68,7 +68,7 @@ public class WmsMovementOrderRespVO {
@Schema(description = "创建者", example = "1")
private String creator;
@Schema(description = "创建者名称", example = "芋道")
@Schema(description = "创建者名称", example = "恭学")
private String creatorName;
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED)
@@ -76,7 +76,7 @@ public class WmsMovementOrderRespVO {
@Schema(description = "更新者", example = "1")
private String updater;
@Schema(description = "更新者名称", example = "芋道")
@Schema(description = "更新者名称", example = "恭学")
private String updaterName;
}

View File

@@ -77,7 +77,7 @@ public class WmsReceiptOrderRespVO {
@Schema(description = "创建者", example = "1")
private String creator;
@Schema(description = "创建者名称", example = "芋道")
@Schema(description = "创建者名称", example = "恭学")
private String creatorName;
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED)
@@ -85,7 +85,7 @@ public class WmsReceiptOrderRespVO {
@Schema(description = "更新者", example = "1")
private String updater;
@Schema(description = "更新者名称", example = "芋道")
@Schema(description = "更新者名称", example = "恭学")
private String updaterName;
}

View File

@@ -77,7 +77,7 @@ public class WmsShipmentOrderRespVO {
@Schema(description = "创建者", example = "1")
private String creator;
@Schema(description = "创建者名称", example = "芋道")
@Schema(description = "创建者名称", example = "恭学")
private String creatorName;
@Schema(description = "更新时间", requiredMode = Schema.RequiredMode.REQUIRED)
@@ -85,7 +85,7 @@ public class WmsShipmentOrderRespVO {
@Schema(description = "更新者", example = "1")
private String updater;
@Schema(description = "更新者名称", example = "芋道")
@Schema(description = "更新者名称", example = "恭学")
private String updaterName;
}

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* WMS 库存 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_inventory")
@KeySequence("wms_inventory_seq")

View File

@@ -14,7 +14,7 @@ import java.math.BigDecimal;
/**
* WMS 库存流水 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_inventory_history")
@KeySequence("wms_inventory_history_seq")

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* WMS 商品品牌 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_item_brand")
@KeySequence("wms_item_brand_seq")

View File

@@ -10,7 +10,7 @@ import lombok.*;
/**
* WMS 商品分类 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_item_category")
@KeySequence("wms_item_category_seq")

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* WMS 商品 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_item")
@KeySequence("wms_item_seq")

View File

@@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* WMS 商品 SKU DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_item_sku")
@KeySequence("wms_item_sku_seq")

View File

@@ -10,7 +10,7 @@ import lombok.*;
/**
* WMS 往来企业 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_merchant")
@KeySequence("wms_merchant_seq")

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* WMS 仓库 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_warehouse")
@KeySequence("wms_warehouse_seq")

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* WMS 盘库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_check_order")
@KeySequence("wms_check_order_seq")

View File

@@ -15,7 +15,7 @@ import java.time.LocalDateTime;
/**
* WMS 盘库单明细 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_check_order_detail")
@KeySequence("wms_check_order_detail_seq")

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* WMS 移库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_movement_order")
@KeySequence("wms_movement_order_seq")

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* WMS 移库单明细 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_movement_order_detail")
@KeySequence("wms_movement_order_detail_seq")

View File

@@ -16,7 +16,7 @@ import java.time.LocalDateTime;
/**
* WMS 入库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_receipt_order")
@KeySequence("wms_receipt_order_seq")

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* WMS 入库单明细 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_receipt_order_detail")
@KeySequence("wms_receipt_order_detail_seq")

View File

@@ -16,7 +16,7 @@ import java.time.LocalDateTime;
/**
* WMS 出库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_shipment_order")
@KeySequence("wms_shipment_order_seq")

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* WMS 出库单明细 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("wms_shipment_order_detail")
@KeySequence("wms_shipment_order_detail_seq")

View File

@@ -11,7 +11,7 @@ import java.util.Map;
/**
* WMS 首页统计 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsHomeStatisticsMapper {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 库存流水 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsInventoryHistoryMapper extends BaseMapperX<WmsInventoryHistoryDO> {

View File

@@ -21,7 +21,7 @@ import java.util.List;
/**
* WMS 库存 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsInventoryMapper extends BaseMapperX<WmsInventoryDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 商品品牌 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsItemBrandMapper extends BaseMapperX<WmsItemBrandDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* WMS 商品分类 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsItemCategoryMapper extends BaseMapperX<WmsItemCategoryDO> {

View File

@@ -14,7 +14,7 @@ import java.util.List;
/**
* WMS 商品 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsItemMapper extends BaseMapperX<WmsItemDO> {

View File

@@ -17,7 +17,7 @@ import java.util.List;
/**
* WMS 商品 SKU Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsItemSkuMapper extends BaseMapperX<WmsItemSkuDO> {

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* WMS 往来企业 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsMerchantMapper extends BaseMapperX<WmsMerchantDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* WMS 仓库 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsWarehouseMapper extends BaseMapperX<WmsWarehouseDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* WMS 盘库单明细 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsCheckOrderDetailMapper extends BaseMapperX<WmsCheckOrderDetailDO> {

View File

@@ -11,7 +11,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 盘库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsCheckOrderMapper extends BaseMapperX<WmsCheckOrderDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* WMS 移库单明细 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsMovementOrderDetailMapper extends BaseMapperX<WmsMovementOrderDetailDO> {

View File

@@ -11,7 +11,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 移库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsMovementOrderMapper extends BaseMapperX<WmsMovementOrderDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* WMS 入库单明细 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsReceiptOrderDetailMapper extends BaseMapperX<WmsReceiptOrderDetailDO> {

View File

@@ -11,7 +11,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 入库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsReceiptOrderMapper extends BaseMapperX<WmsReceiptOrderDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* WMS 出库单明细 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsShipmentOrderDetailMapper extends BaseMapperX<WmsShipmentOrderDetailDO> {

View File

@@ -11,7 +11,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* WMS 出库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface WmsShipmentOrderMapper extends BaseMapperX<WmsShipmentOrderDO> {

View File

@@ -3,7 +3,7 @@ package cn.iocoder.yudao.module.wms.enums;
/**
* WMS 字典类型常量
*
* @author 芋道源码
* @author 恭学教育
*/
public interface DictTypeConstants {

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* WMS 往来企业类型枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* WMS 单据状态枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@Getter
@AllArgsConstructor

View File

@@ -6,7 +6,7 @@ package cn.iocoder.yudao.module.wms.enums.order;
* 集中管理业务类型枚举的编号,按业务域分段。
* 各枚举类引用此处常量,避免硬编码数字。(也避免冲突!!!)
*
* @author 芋道源码
* @author 恭学教育
*/
public final class WmsOrderTypeConstants {

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* WMS 单据类型枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* WMS 入库单类型枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@Getter
@AllArgsConstructor

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* WMS 出库单类型枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@Getter
@AllArgsConstructor

View File

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

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
/**
* WMS 模块的 web 组件的 Configuration
*
* @author 芋道源码
* @author 恭学教育
*/
@Configuration(proxyBeanMethods = false)
public class WmsWebConfiguration {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 首页统计 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsHomeStatisticsService {

View File

@@ -31,7 +31,7 @@ import static cn.iocoder.yudao.framework.common.util.date.LocalDateTimeUtils.get
/**
* WMS 首页统计 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
public class WmsHomeStatisticsServiceImpl implements WmsHomeStatisticsService {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 库存流水 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsInventoryHistoryService {

View File

@@ -15,7 +15,7 @@ import java.util.List;
/**
* WMS 库存流水 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* WMS 库存 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsInventoryService {

View File

@@ -38,7 +38,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 库存 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 库存变更请求 DTO
*
* @author 芋道源码
* @author 恭学教育
*/
@Data
public class WmsInventoryChangeReqDTO {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 库存盘点请求 DTO
*
* @author 芋道源码
* @author 恭学教育
*/
@Data
public class WmsInventoryCheckReqDTO {

View File

@@ -15,7 +15,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 商品品牌 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsItemBrandService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.ITEM_BRAND_NO
/**
* WMS 商品品牌 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -15,7 +15,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 商品分类 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsItemCategoryService {

View File

@@ -24,7 +24,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 商品分类 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -16,7 +16,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 商品 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsItemService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 商品 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -16,7 +16,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 商品 SKU Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsItemSkuService {

View File

@@ -33,7 +33,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 商品 SKU Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -16,7 +16,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 往来企业 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsMerchantService {

View File

@@ -28,7 +28,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 往来企业 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -15,7 +15,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* WMS 仓库 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsWarehouseService {

View File

@@ -29,7 +29,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 仓库 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 盘库单明细 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsCheckOrderDetailService {

View File

@@ -24,7 +24,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 盘库单明细 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import jakarta.validation.Valid;
/**
* WMS 盘库单 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsCheckOrderService {

View File

@@ -30,7 +30,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 盘库单 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 移库单明细 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsMovementOrderDetailService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 移库单明细 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import jakarta.validation.Valid;
/**
* WMS 移库单 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsMovementOrderService {

View File

@@ -31,7 +31,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 移库单 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 入库单明细 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsReceiptOrderDetailService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 入库单明细 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import jakarta.validation.Valid;
/**
* WMS 入库单 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsReceiptOrderService {

View File

@@ -32,7 +32,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 入库单 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* WMS 出库单明细 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsShipmentOrderDetailService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 出库单明细 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import jakarta.validation.Valid;
/**
* WMS 出库单 Service 接口
*
* @author 芋道源码
* @author 恭学教育
*/
public interface WmsShipmentOrderService {

View File

@@ -32,7 +32,7 @@ import static cn.iocoder.yudao.module.wms.enums.ErrorCodeConstants.*;
/**
* WMS 出库单 Service 实现类
*
* @author 芋道源码
* @author 恭学教育
*/
@Service
@Validated

View File

@@ -28,7 +28,7 @@ spring:
mybatis:
lazy-initialization: true # 单元测试,设置 MyBatis Mapper 延迟加载,加速每个单元测试
--- #################### 芋道相关配置 ####################
--- #################### 恭学相关配置 ####################
yudao:
info: