订单管理相关

This commit is contained in:
潘荣晟
2025-10-10 18:00:17 +08:00
parent a271f1b8f5
commit ee7cf01c81
19 changed files with 2236 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.zt.plat.module.contractorder.enums.purchaseorder;
import com.zt.plat.framework.common.exception.ErrorCode;
/**
* contract-order 错误码枚举类
*
* contract-order 系统,使用 1-xxx-xxx-xxx 段
*
* @author ZT
*/
public interface ErrorCodeConstants {
ErrorCode PURCHASE_ORDER_NOT_EXISTS = new ErrorCode(1_008_000_001, "采购订单不存在");
ErrorCode PRCH_ORD_DTL_NOT_EXISTS = new ErrorCode(1_008_001_001, "采购订单明细不存在");
}