dangsn
2024-06-06 33321f5486fd586fda6fd3f46b7e71754fede28b
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.vci.starter.web.constant;
 
/**
 * 平台框架的生命周期的编号
 * @author weidy
 * @date 2019/12/27
 */
public class FrameWorkLcStatusConstant {
 
    /**
     * 平台框架的业务档案通用的生命周期
     */
    public static final String FRAME_WORK_LIFE_CYCLE_NAME = "frameworkDataLc";
 
    /**
     * 默认的生命周期
     */
    public static final String EMTYPE_LIFE_CYCLE = "defaultLC";
 
    /**
     * 通用的发布生命周期,编制,审核,发布
     */
    public static final String RELEASE_LIFE_CYCLE = "releaseDataLc";
}