Commit e3c1bf17cabc4d0249d15164bc7cc94cd6e65e00

Authored by fangcheng
1 parent 80a9d78720

修改uuid为大写

Showing 1 changed file with 1 additions and 1 deletions

regional-etl/src/main/java/com/lyms/etl/util/UUIDUtil.java View file @ e3c1bf1
... ... @@ -9,7 +9,7 @@
9 9 */
10 10 public class UUIDUtil {
11 11 public static String createId() {
12   - return UUID.randomUUID().toString().replace("-", "");
  12 + return UUID.randomUUID().toString().replace("-", "").toUpperCase();
13 13 }
14 14 }