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

@@ -54,9 +54,9 @@ public class ErpFinancePaymentRespVO {
@Schema(description = "备注", example = "你猜")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -54,9 +54,9 @@ public class ErpFinanceReceiptRespVO {
@Schema(description = "备注", example = "你猜")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -7,7 +7,7 @@ import lombok.Data;
@Data
public class ErpProductCategoryListReqVO {
@Schema(description = "分类名称", example = "芋艿")
@Schema(description = "分类名称", example = "管理员")
private String name;
@Schema(description = "开启状态", example = "1")

View File

@@ -23,7 +23,7 @@ public class ErpProductCategoryRespVO {
@ExcelProperty("父分类编号")
private Long parentId;
@Schema(description = "分类名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
@Schema(description = "分类名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "管理员")
@ExcelProperty("分类名称")
private String name;

View File

@@ -16,7 +16,7 @@ public class ErpProductCategorySaveReqVO {
@NotNull(message = "父分类编号不能为空")
private Long parentId;
@Schema(description = "分类名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
@Schema(description = "分类名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "管理员")
@NotEmpty(message = "分类名称不能为空")
private String name;

View File

@@ -12,7 +12,7 @@ import lombok.ToString;
@ToString(callSuper = true)
public class ErpProductUnitPageReqVO extends PageParam {
@Schema(description = "单位名字", example = "芋艿")
@Schema(description = "单位名字", example = "管理员")
private String name;
@Schema(description = "单位状态", example = "1")

View File

@@ -18,7 +18,7 @@ public class ErpProductUnitRespVO {
@ExcelProperty("单位编号")
private Long id;
@Schema(description = "单位名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
@Schema(description = "单位名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "管理员")
@ExcelProperty("单位名字")
private String name;

View File

@@ -14,7 +14,7 @@ public class ErpProductUnitSaveReqVO {
@Schema(description = "单位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "31254")
private Long id;
@Schema(description = "单位名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
@Schema(description = "单位名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "管理员")
@NotEmpty(message = "单位名字不能为空")
private String name;

View File

@@ -29,7 +29,7 @@ public class ErpPurchaseInRespVO {
@Schema(description = "供应商编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long supplierId;
@Schema(description = "供应商名称", example = "芋道")
@Schema(description = "供应商名称", example = "恭学")
@ExcelProperty("供应商名称")
private String supplierName;
@@ -78,9 +78,9 @@ public class ErpPurchaseInRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -29,7 +29,7 @@ public class ErpPurchaseOrderRespVO {
@Schema(description = "供应商编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long supplierId;
@Schema(description = "供应商名称", example = "芋道")
@Schema(description = "供应商名称", example = "恭学")
@ExcelProperty("供应商名称")
private String supplierName;
@@ -71,9 +71,9 @@ public class ErpPurchaseOrderRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -29,7 +29,7 @@ public class ErpPurchaseReturnRespVO {
@Schema(description = "供应商编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long supplierId;
@Schema(description = "供应商名称", example = "芋道")
@Schema(description = "供应商名称", example = "恭学")
@ExcelProperty("供应商名称")
private String supplierName;
@@ -78,9 +78,9 @@ public class ErpPurchaseReturnRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -12,7 +12,7 @@ import lombok.ToString;
@ToString(callSuper = true)
public class ErpSupplierPageReqVO extends PageParam {
@Schema(description = "供应商名称", example = "芋道源码")
@Schema(description = "供应商名称", example = "恭学教育")
private String name;
@Schema(description = "手机号码", example = "15601691300")

View File

@@ -20,11 +20,11 @@ public class ErpSupplierRespVO {
@ExcelProperty("供应商编号")
private Long id;
@Schema(description = "供应商名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "供应商名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "恭学教育")
@ExcelProperty("供应商名称")
private String name;
@Schema(description = "联系人", example = "芋艿")
@Schema(description = "联系人", example = "管理员")
@ExcelProperty("联系人")
private String contact;

View File

@@ -19,11 +19,11 @@ public class ErpSupplierSaveReqVO {
@Schema(description = "供应商编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "17791")
private Long id;
@Schema(description = "供应商名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "供应商名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "恭学教育")
@NotEmpty(message = "供应商名称不能为空")
private String name;
@Schema(description = "联系人", example = "芋艿")
@Schema(description = "联系人", example = "管理员")
private String contact;
@Schema(description = "手机号码", example = "15601691300")

View File

@@ -62,7 +62,7 @@ public class ErpCustomerRespVO {
@ExcelProperty("税率")
private BigDecimal taxPercent;
@Schema(description = "开户行", example = "芋艿")
@Schema(description = "开户行", example = "管理员")
@ExcelProperty("开户行")
private String bankName;

View File

@@ -49,7 +49,7 @@ public class ErpCustomerSaveReqVO {
@Schema(description = "税率", example = "10")
private BigDecimal taxPercent;
@Schema(description = "开户行", example = "芋艿")
@Schema(description = "开户行", example = "管理员")
private String bankName;
@Schema(description = "开户账号", example = "622908212277228617")

View File

@@ -29,7 +29,7 @@ public class ErpSaleOrderRespVO {
@Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long customerId;
@Schema(description = "客户名称", example = "芋道")
@Schema(description = "客户名称", example = "恭学")
@ExcelProperty("客户名称")
private String customerName;
@@ -74,9 +74,9 @@ public class ErpSaleOrderRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -29,7 +29,7 @@ public class ErpSaleOutRespVO {
@Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long customerId;
@Schema(description = "客户名称", example = "芋道")
@Schema(description = "客户名称", example = "恭学")
@ExcelProperty("客户名称")
private String customerName;
@@ -81,9 +81,9 @@ public class ErpSaleOutRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -29,7 +29,7 @@ public class ErpSaleReturnRespVO {
@Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1724")
private Long customerId;
@Schema(description = "客户名称", example = "芋道")
@Schema(description = "客户名称", example = "恭学")
@ExcelProperty("客户名称")
private String customerName;
@@ -81,9 +81,9 @@ public class ErpSaleReturnRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -141,7 +141,7 @@ public class ErpStockMoveController {
// 1.2 产品信息
Map<Long, ErpProductRespVO> productMap = productService.getProductVOMap(
convertSet(stockMoveItemList, ErpStockMoveItemDO::getProductId));
// 1.3 TODO 芋艿:搞仓库信息
// 1.3 TODO 管理员:搞仓库信息
// 1.4 管理员信息
Map<Long, AdminUserRespDTO> userMap = adminUserApi.getUserMap(
convertSet(pageResult.getList(), stockMove -> Long.parseLong(stockMove.getCreator())));
@@ -151,7 +151,7 @@ public class ErpStockMoveController {
item -> MapUtils.findAndThen(productMap, item.getProductId(), product -> item.setProductName(product.getName())
.setProductBarCode(product.getBarCode()).setProductUnitName(product.getUnitName()))));
stockMove.setProductNames(CollUtil.join(stockMove.getItems(), "", ErpStockMoveRespVO.Item::getProductName));
// TODO 芋艿
// TODO 管理员
// MapUtils.findAndThen(customerMap, stockMove.getCustomerId(), supplier -> stockMove.setCustomerName(supplier.getName()));
MapUtils.findAndThen(userMap, Long.parseLong(stockMove.getCreator()), user -> stockMove.setCreatorName(user.getNickname()));
});

View File

@@ -51,9 +51,9 @@ public class ErpStockCheckRespVO {
@Schema(description = "附件 URL", example = "https://www.iocoder.cn/1.doc")
private String fileUrl;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -28,7 +28,7 @@ public class ErpStockInRespVO {
@Schema(description = "供应商编号", example = "3113")
private Long supplierId;
@Schema(description = "供应商名称", example = "芋道")
@Schema(description = "供应商名称", example = "恭学")
@ExcelProperty("供应商名称")
private String supplierName;
@@ -56,9 +56,9 @@ public class ErpStockInRespVO {
@Schema(description = "附件 URL", example = "https://www.iocoder.cn/1.doc")
private String fileUrl;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -50,9 +50,9 @@ public class ErpStockMoveRespVO {
@Schema(description = "附件 URL", example = "https://www.iocoder.cn/1.doc")
private String fileUrl;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -28,7 +28,7 @@ public class ErpStockOutRespVO {
@Schema(description = "客户编号", example = "3113")
private Long customerId;
@Schema(description = "客户名称", example = "芋道")
@Schema(description = "客户名称", example = "恭学")
@ExcelProperty("客户名称")
private String customerName;
@@ -56,9 +56,9 @@ public class ErpStockOutRespVO {
@Schema(description = "附件 URL", example = "https://www.iocoder.cn/1.doc")
private String fileUrl;
@Schema(description = "创建人", example = "芋道")
@Schema(description = "创建人", example = "恭学")
private String creator;
@Schema(description = "创建人名称", example = "芋道")
@Schema(description = "创建人名称", example = "恭学")
private String creatorName;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)

View File

@@ -36,7 +36,7 @@ public class ErpWarehouseRespVO {
@ExcelProperty("备注")
private String remark;
@Schema(description = "负责人", example = "芋头")
@Schema(description = "负责人", example = "管理员")
@ExcelProperty("负责人")
private String principal;

View File

@@ -30,7 +30,7 @@ public class ErpWarehouseSaveReqVO {
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "负责人", example = "芋头")
@Schema(description = "负责人", example = "管理员")
private String principal;
@Schema(description = "仓储费,单位:元", example = "13973")

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* ERP 结算账户 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_account")
@KeySequence("erp_account_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 付款单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_finance_payment")
@KeySequence("erp_finance_payment_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 付款项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_finance_payment_item")
@KeySequence("erp_finance_payment_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 收款单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_finance_receipt")
@KeySequence("erp_finance_receipt_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 收款项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_finance_receipt_item")
@KeySequence("erp_finance_receipt_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* ERP 产品分类 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_product_category")
@KeySequence("erp_product_category_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* ERP 产品 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_product")
@KeySequence("erp_product_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -10,7 +10,7 @@ import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
/**
* ERP 产品单位 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_product_unit")
@KeySequence("erp_product_unit_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 采购入库 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_purchase_in")
@KeySequence("erp_purchase_in_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* ERP 采购入库项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_purchase_in_items")
@KeySequence("erp_purchase_in_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 采购订单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_purchase_order")
@KeySequence("erp_purchase_order_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 采购订单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_purchase_order_items")
@KeySequence("erp_purchase_order_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 采购退货 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_purchase_return")
@KeySequence("erp_purchase_return_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* ERP 采购退货项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_purchase_return_items")
@KeySequence("erp_purchase_return_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* ERP 供应商 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_supplier")
@KeySequence("erp_supplier_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* ERP 客户 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_customer")
@KeySequence("erp_customer_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 销售订单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_sale_order")
@KeySequence("erp_sale_order_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 销售订单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_sale_order_items")
@KeySequence("erp_sale_order_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 销售出库 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_sale_out")
@KeySequence("erp_sale_out_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -14,7 +14,7 @@ import java.math.BigDecimal;
/**
* ERP 销售出库项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_sale_out_items")
@KeySequence("erp_sale_out_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 销售退货 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName(value = "erp_sale_return")
@KeySequence("erp_sale_return_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* ERP 销售退货项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_sale_return_items")
@KeySequence("erp_sale_return_items_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.time.LocalDateTime;
/**
* ERP 库存盘点单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_check")
@KeySequence("erp_stock_check_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 库存盘点单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_check_item")
@KeySequence("erp_stock_check_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 产品库存 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock")
@KeySequence("erp_stock_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* ERP 其它入库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_in")
@KeySequence("erp_stock_in_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 其它入库单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_in_item")
@KeySequence("erp_stock_in_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.time.LocalDateTime;
/**
* ERP 库存调拨单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_move")
@KeySequence("erp_stock_move_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 库存调拨单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_move_item")
@KeySequence("erp_stock_move_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.time.LocalDateTime;
/**
* ERP 其它出库单 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_out")
@KeySequence("erp_stock_out_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
@@ -36,7 +36,7 @@ public class ErpStockOutDO extends BaseDO {
/**
* 客户编号
*
* TODO 芋艿:待关联
* TODO 管理员:待关联
*/
private Long customerId;
/**

View File

@@ -12,7 +12,7 @@ import java.math.BigDecimal;
/**
* ERP 其它出库单项 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_out_item")
@KeySequence("erp_stock_out_item_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.math.BigDecimal;
/**
* ERP 产品库存明细 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_stock_record")
@KeySequence("erp_stock_record_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.math.BigDecimal;
/**
* ERP 仓库 DO
*
* @author 芋道源码
* @author 恭学教育
*/
@TableName("erp_warehouse")
@KeySequence("erp_warehouse_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* ERP 结算账户 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpAccountMapper extends BaseMapperX<ErpAccountDO> {

View File

@@ -15,7 +15,7 @@ import java.util.Map;
/**
* ERP 付款单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpFinancePaymentItemMapper extends BaseMapperX<ErpFinancePaymentItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 付款单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpFinancePaymentMapper extends BaseMapperX<ErpFinancePaymentDO> {

View File

@@ -15,7 +15,7 @@ import java.util.Map;
/**
* ERP 收款单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpFinanceReceiptItemMapper extends BaseMapperX<ErpFinanceReceiptItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 收款单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpFinanceReceiptMapper extends BaseMapperX<ErpFinanceReceiptDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* ERP 产品分类 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpProductCategoryMapper extends BaseMapperX<ErpProductCategoryDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* ERP 产品 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpProductMapper extends BaseMapperX<ErpProductDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* ERP 产品单位 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpProductUnitMapper extends BaseMapperX<ErpProductUnitDO> {

View File

@@ -17,7 +17,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* ERP 采购入库项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseInItemMapper extends BaseMapperX<ErpPurchaseInItemDO> {

View File

@@ -17,7 +17,7 @@ import java.util.Objects;
/**
* ERP 采购入库 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseInMapper extends BaseMapperX<ErpPurchaseInDO> {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 采购订单明项目 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseOrderItemMapper extends BaseMapperX<ErpPurchaseOrderItemDO> {

View File

@@ -15,7 +15,7 @@ import java.util.Objects;
/**
* ERP 采购订单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseOrderMapper extends BaseMapperX<ErpPurchaseOrderDO> {

View File

@@ -17,7 +17,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* ERP 采购退货项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseReturnItemMapper extends BaseMapperX<ErpPurchaseReturnItemDO> {

View File

@@ -17,7 +17,7 @@ import java.util.Objects;
/**
* ERP 采购退货 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseReturnMapper extends BaseMapperX<ErpPurchaseReturnDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* ERP 供应商 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSupplierMapper extends BaseMapperX<ErpSupplierDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* ERP 客户 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpCustomerMapper extends BaseMapperX<ErpCustomerDO> {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 销售订单明项目 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleOrderItemMapper extends BaseMapperX<ErpSaleOrderItemDO> {

View File

@@ -16,7 +16,7 @@ import java.util.Objects;
/**
* ERP 销售订单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleOrderMapper extends BaseMapperX<ErpSaleOrderDO> {

View File

@@ -17,7 +17,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* ERP 销售出库项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleOutItemMapper extends BaseMapperX<ErpSaleOutItemDO> {

View File

@@ -17,7 +17,7 @@ import java.util.Objects;
/**
* ERP 销售出库 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleOutMapper extends BaseMapperX<ErpSaleOutDO> {

View File

@@ -17,7 +17,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* ERP 销售退货项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleReturnItemMapper extends BaseMapperX<ErpSaleReturnItemDO> {

View File

@@ -18,7 +18,7 @@ import java.util.Objects;
/**
* ERP 销售退货 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleReturnMapper extends BaseMapperX<ErpSaleReturnDO> {

View File

@@ -9,7 +9,7 @@ import java.time.LocalDateTime;
/**
* ERP 采购统计 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpPurchaseStatisticsMapper {

View File

@@ -9,7 +9,7 @@ import java.time.LocalDateTime;
/**
* ERP 销售统计 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpSaleStatisticsMapper {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 库存盘点单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockCheckItemMapper extends BaseMapperX<ErpStockCheckItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 库存调拨单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockCheckMapper extends BaseMapperX<ErpStockCheckDO> {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 其它入库单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockInItemMapper extends BaseMapperX<ErpStockInItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 其它入库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockInMapper extends BaseMapperX<ErpStockInDO> {

View File

@@ -18,7 +18,7 @@ import java.util.Map;
/**
* ERP 产品库存 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockMapper extends BaseMapperX<ErpStockDO> {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 库存调拨单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockMoveItemMapper extends BaseMapperX<ErpStockMoveItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 库存调拨单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockMoveMapper extends BaseMapperX<ErpStockMoveDO> {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* ERP 其它出库单项 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockOutItemMapper extends BaseMapperX<ErpStockOutItemDO> {

View File

@@ -12,7 +12,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 其它出库单 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockOutMapper extends BaseMapperX<ErpStockOutDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* ERP 产品库存明细 Mapper
*
* @author 芋道源码
* @author 恭学教育
*/
@Mapper
public interface ErpStockRecordMapper extends BaseMapperX<ErpStockRecordDO> {

View File

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

View File

@@ -3,7 +3,7 @@ package cn.iocoder.yudao.module.erp.dal.redis;
/**
* ERP Redis Key 枚举类
*
* @author 芋道源码
* @author 恭学教育
*/
public interface RedisKeyConstants {

View File

@@ -3,7 +3,7 @@ package cn.iocoder.yudao.module.erp.enums;
/**
* ERP 字典类型的枚举类
*
* @author 芋道源码
* @author 恭学教育
*/
public interface DictTypeConstants {

View File

@@ -9,9 +9,9 @@ import java.util.Arrays;
/**
* ERP 审核状态枚举
*
* TODO 芋艿:目前只有待审批、已审批两个状态,未来接入工作流后,会丰富下:待提交(草稿)=》已提交(待审核)=》审核通过、审核不通过;另外,工作流需要支持“反审核”,把工作流退回到原点;
* TODO 管理员:目前只有待审批、已审批两个状态,未来接入工作流后,会丰富下:待提交(草稿)=》已提交(待审核)=》审核通过、审核不通过;另外,工作流需要支持“反审核”,把工作流退回到原点;
*
* @author 芋道源码
* @author 恭学教育
*/
@RequiredArgsConstructor
@Getter

View File

@@ -4,7 +4,7 @@ package cn.iocoder.yudao.module.erp.enums;
* ERP 操作日志枚举
* 目的:统一管理,也减少 Service 里各种“复杂”字符串
*
* @author 芋道源码
* @author 恭学教育
*/
public interface LogRecordConstants {

View File

@@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* ERP 库存明细 - 业务类型枚举
*
* @author 芋道源码
* @author 恭学教育
*/
@RequiredArgsConstructor
@Getter

View File

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

Some files were not shown because too many files have changed in this diff Show More