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;
|
}
|