@@ -0,0 +1,27 @@
+package com.fdkankan.common.constant;
+
+/**
+ * 算法计算生成模型类型
+ */
+public enum ModelKind {
+ DAM("dam", "dam"),
+ THREE_D_TILE("3dtiles", "3dtiles");
+ private String code;
+ private String message;
+ private ModelKind(String code, String message) {
+ this.code = code;
+ this.message = message;
+ }
+ public String code() {
+ return code;
+ public String message() {
+ return message;
+}
@@ -154,6 +154,11 @@ public class RedisLockKey {
*/
public static final String LOCK_DOWNLOAD_SIWEI_HTML = "lock:download:siwei:html";
+ /**
+ * 思维打包下载锁
+ public static final String LOCK_GET_MATTERPRO_NUM = "lock:get:matterpro:num";
public static void main(String[] args) {
FileUtil.copyContent(new File("F:\\test\\test"), new File("F:\\test\\test2"), true);
}