Commit d82a57fe authored by yanzg's avatar yanzg

将源码打包进jar包

parent 3d7fdff2
...@@ -29,6 +29,7 @@ public class StringHelper { ...@@ -29,6 +29,7 @@ public class StringHelper {
public static final String TYPE_BOOL = "boolean"; public static final String TYPE_BOOL = "boolean";
public static final String TYPE_OBJECT = "System.Object"; public static final String TYPE_OBJECT = "System.Object";
public static final String UNDER_FLAG = "_"; public static final String UNDER_FLAG = "_";
public static final String ID_TAG = "z";
//------------------------------------------------------ 空值判断和处理 ----------------------------------------------------------------------- //------------------------------------------------------ 空值判断和处理 -----------------------------------------------------------------------
...@@ -985,7 +986,7 @@ public class StringHelper { ...@@ -985,7 +986,7 @@ public class StringHelper {
* @return * @return
*/ */
private static String getNewIdTag(long time) { private static String getNewIdTag(long time) {
return String.format("z%015d", time); return String.format("%s%015d", ID_TAG, time);
} }
/** /**
......
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