1
sunshine
2024-11-05 92a9e53e82c74d36a72eb92f93777bbb16e2db73
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.nova.sankuai.domain.api.zhongan;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * <p>
 * description
 * </p>
 *
 * @author denglb 2021/11/16
 */
@AllArgsConstructor
@Getter
public enum ZhongAnStatus {
    STATUS_1("1", "处理中"),
    STATUS_2("2", "失败"),
    STATUS_3("3", "成功"),
    ;
 
    private String code;
    private String value;
}