rev:代码修改
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
package org.nl.common.enums.wms;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @Author: lyd
|
||||
* @Description:
|
||||
* @Date: 2023/5/15
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum PointStatusEnum {
|
||||
// 空位
|
||||
EMPTY_PLACE("1", "空位"),
|
||||
// 有料
|
||||
FULL_MATERIAL("2", "有料"),
|
||||
// 空载具
|
||||
EMPTY_VEHICLE("3", "空载具");
|
||||
|
||||
private final String value;
|
||||
private final String description;
|
||||
}
|
||||
Reference in New Issue
Block a user