rev:代码修改

This commit is contained in:
ludj
2024-05-30 18:09:52 +08:00
parent 7659065a68
commit 9c0db5c954
13 changed files with 31 additions and 32 deletions

View File

@@ -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;
}