gengby
7 months ago
2 changed files with 39 additions and 0 deletions
@ -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; |
||||
|
} |
Loading…
Reference in new issue