feat:新增LMS 生箔点位库存管理。
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package cn.code.nl.module.lms.enums;
|
||||
|
||||
import cn.code.nl.framework.common.enums.RpcConstants;
|
||||
|
||||
/**
|
||||
* API 相关的枚举
|
||||
*
|
||||
* @author zhouz
|
||||
*/
|
||||
public class ApiConstants {
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*
|
||||
* 注意,需要保证和 spring.application.name 保持一致
|
||||
*/
|
||||
public static final String NAME = "lms-server";
|
||||
|
||||
public static final String PREFIX = RpcConstants.RPC_API_PREFIX + "/lms";
|
||||
|
||||
public static final String VERSION = "1.0.0";
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package cn.code.nl.module.lms.enums;
|
||||
|
||||
import cn.code.nl.framework.common.exception.ErrorCode;
|
||||
|
||||
/**
|
||||
* @author dsh
|
||||
* 2026/7/16
|
||||
*/
|
||||
public interface ErrorCodeConstants {
|
||||
|
||||
// ========== 生箔点位库存 ==========
|
||||
ErrorCode RAW_FOIL_POINT_IVT_NOT_EXISTS = new ErrorCode(1, "生箔点位库存不存在");
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user