package com.chinaztt.mes.warehouse.state.constant;
|
|
import lombok.AllArgsConstructor;
|
|
/**
|
* @Author: yangyao
|
* @Date: 2022/10/31 17:12
|
* @Description:
|
*/
|
@AllArgsConstructor
|
public enum PalletTransportsState {
|
|
DRAFT("draft", "草稿"),
|
PROCESSING("processing", "进行中"),
|
FINISHED("finished", "已完成");
|
private String code;
|
|
private String message;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getMessage() {
|
return message;
|
}
|
|
public void setMessage(String message) {
|
this.message = message;
|
}
|
}
|