add:枚举
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package org.nl.acs.device.driver.stacker.double_stacker.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @Description TODO
|
||||
* @Author Gengby
|
||||
* @Date 2024/6/26
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum ErrorEnum {
|
||||
MR(5, "满入"),
|
||||
KC(6, "空出"),
|
||||
ZD(16, "阻挡/浅货位有货");
|
||||
|
||||
private int code;
|
||||
private String desc;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package org.nl.acs.device.driver.stacker.double_stacker.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @Description TODO
|
||||
* @Author Gengby
|
||||
* @Date 2024/6/26
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum ForkTypeEnum {
|
||||
FRONT("1", "前叉"),
|
||||
BACK("2", "后叉");
|
||||
|
||||
private String code;
|
||||
private String desc;
|
||||
}
|
||||
Reference in New Issue
Block a user