1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.vci.common.qt.object;
 
public final class Version {
    /**
     * 所有版次
     */
    public static final int allVer = 0;
    /**
     * 当前版本当前版次
     */
    public static final int currentRevCurrentVer = 1;
    /**
     * 当前版本最新版次
     */
    public static final int currentRevLastVer = 2;
    /**
     * 最新版本最新版次
     */
    public static final int lastRevLastVer = 3;
    /**
     * 当前版次 t_oid == ...时的所有f
     */
    @Deprecated
    public static final int currentVer = 4;
    /**
     * 当前版本 t_revisionoid == ...时的所有f
     */
    @Deprecated
    public static final int currentRev = 5;
    /**
     * 当前命名对象 t_nameoid == ...时的所有f
     */
    @Deprecated
    public static final int currentName = 6;
    /**
     * 最新发布版本
     */
    public static final int lastReleasedRev = 7;
}