CZT
2023-09-06 71c4fa1e27f75ae4b765c95c67a3069c84dc72ba
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.ld.igds.order;
 
import com.ld.igds.order.data.OrderProgress;
 
import java.util.HashMap;
import java.util.Map;
 
public class OrderUtil {
 
    /**
     * 命令执行进度信息,key= company+bizType
     */
    public static  final Map<String, OrderProgress> contextProgress = new HashMap<String, OrderProgress>();
 
   // public static final String PROGRESS_INIT = "INIT";//初始化
 
    public static final String PROGRESS_PROGRESS = "PROGRESS";//执行中
 
    public static final String PROGRESS_COMPLETE = "COMPLETE";//完成
//
//    public static final String PROGRESS_TIMOUT = "TIMOUT";//执行超时
 
}