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.highdatas.mdm.pojo;
|
| /**
| * @author kimi
| * @description
| * @date 2020-02-17 15:30
| */
|
|
| public enum SysAssembleStatus {
| /*
| * 工作中
| * */
| working,
| /*
| * 编辑中
| * */
| edit,
| /*
| * 冻结
| * */
| freeze,
| }
|
|