db
潘志宝
2024-08-06 368b5e9c2066f2e37c19b6d95d8597e021ffa20a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.iailab.common.enums;
 
/**
 * 通讯状态
 *
 * @author PanZhibao
 * @Description
 * @createTime 2023年05月22日 10:26:00
 */
public enum PostalStatus {
    ABNORMAL("0"), // 0 异常
    NORMAL("1");  //1 正常
 
    private String value;
 
    PostalStatus(String value) {
        this.value = value;
    }
 
    public String value() {
        return this.value;
    }
}