ERP:完成 stock 仓库信息的实现

This commit is contained in:
YunaiV
2024-02-05 01:36:34 +08:00
parent a36ae0c469
commit b7654eafea
11 changed files with 631 additions and 0 deletions

View File

@ -9,6 +9,9 @@ import cn.iocoder.yudao.framework.common.exception.ErrorCode;
*/
public interface ErrorCodeConstants {
// ========== ERP 仓库 1-030-400-000 ==========
ErrorCode WAREHOUSE_NOT_EXISTS = new ErrorCode(1_030_400_000, "仓库不存在");
// ========== ERP 产品 1-030-500-000 ==========
ErrorCode PRODUCT_NOT_EXISTS = new ErrorCode(1_030_500_000, "产品不存在");