kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.highdatas.mdm.pojo;
 
/**
 * @author kimi
 * @description
 * @date 2020-02-17 15:30
 */
 
 
public enum SysAssembleLogStatus {
 
    /*
    * 正在执行
    * */
    working,
    /*
    * 成功
    * */
    success,
    /*
    * 失败
    * */
    defeat
}