李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
    }
}