来料加工订单

This commit is contained in:
潘荣晟
2026-01-23 18:31:07 +08:00
parent 7e08ec9ec4
commit d2b814bb7d
32 changed files with 2375 additions and 42 deletions

View File

@@ -0,0 +1,17 @@
package com.zt.plat.module.contractorder.enums.originalmaterialprocessing;
import com.zt.plat.framework.common.exception.ErrorCode;
/**
* contract-order 错误码枚举类
*
* contract-order 系统,使用 1-xxx-xxx-xxx 段
*
* @author ZT
*/
public interface ErrorCodeConstants {
// ========== 合同模块 1-027-000-000 ==========
ErrorCode ORIGINAL_MATERIAL_PROCESSING_DETAIL_NOT_EXISTS = new ErrorCode(1_027_130_000, "来料加工订单明细不存在");
ErrorCode ORIGINAL_MATERIAL_PROCESSING_DO_NOT_EXISTS = new ErrorCode(1_027_130_001, "来料加工订单不存在");
}