Commit 46c74c22 authored by yanzg's avatar yanzg

常规BUG的修改

parent b7c1e8fc
......@@ -110,6 +110,10 @@ public class DaoConst {
* 删除字段名称
*/
public static final String REMOVE_FLAG = "remove";
/**
* MD5标记字段
*/
public static final String MD5_KEY_FLAG = "md5key";
/**
* 删除字符串长度变量
*/
......@@ -134,13 +138,17 @@ public class DaoConst {
/**
* 删除标记
*/
public static final int FIELD_REMOVE_FLAG = 1;
public static final int FIELD_REMOVE = 1;
/**
* 版本号字段
*/
public static final int FIELD_VERSION_FLAG = 2;
public static final int FIELD_VERSION = 2;
/**
* 主键字段
*/
public static final int FIELD_PRIMARY = 3;
/**
* MD5标记字段,用于统计字段
*/
public static final int FIELD_MD5 = 4;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment