Merge remote-tracking branch 'refs/remotes/origin/huachuang_ls' into feature/20260808/packaging_workshop
# Conflicts: # nl-module-lms/nl-module-lms-api/src/main/java/cn/code/nl/module/lms/enums/ErrorCodeConstants.java # nl-module-task/nl-module-task-api/src/main/java/cn/code/nl/module/task/enums/TaskOwnerServiceEnum.java # nl-module-task/nl-module-task-server/src/main/java/cn/code/nl/module/task/mq/producer/TaskEventProducer.java # nl-server/src/main/resources/application.yaml
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package cn.code.nl.module.task.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author dsh
|
||||
* 2026/7/28
|
||||
*/
|
||||
@Getter
|
||||
public enum AcsTaskTypeEnum {
|
||||
|
||||
AGV_TASK("1","agv任务"),
|
||||
TRUSS_TASK("6","桁架任务");
|
||||
|
||||
|
||||
private String code;
|
||||
|
||||
private String name;
|
||||
|
||||
AcsTaskTypeEnum(String code,String name){
|
||||
this.code = code;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,8 @@ import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 任务业务归属服务枚举
|
||||
* @author dsh
|
||||
* 2026/7/29
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
@@ -13,6 +15,10 @@ public enum TaskOwnerServiceEnum {
|
||||
LMS("lms", "LMS"),
|
||||
WMS("wms", "WMS");
|
||||
|
||||
private String code;
|
||||
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* MQ Topic 前缀
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
package cn.code.nl.module.task.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author dsh
|
||||
* 2026/7/30
|
||||
*/
|
||||
@Getter
|
||||
public enum TaskTypeEnum {
|
||||
|
||||
RAW_FOIL_STANDARD_TASK("010101","生箔标准任务"),
|
||||
RAW_FOIL_INSTORAGE_TASK("010102","称重入库任务");
|
||||
|
||||
|
||||
private String code;
|
||||
|
||||
private String name;
|
||||
|
||||
TaskTypeEnum(String code,String name){
|
||||
this.code = code;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user