shiqian 3 vuotta sitten
vanhempi
commit
72d9e47cfb

+ 13 - 0
boman-report/src/main/java/com/boman/report/controller/MoveDataController.java

@@ -0,0 +1,13 @@
+package com.boman.report.controller;
+
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @author shiqian
+ * @date 2021年09月06日 18:31
+ **/
+@RestController
+@RequestMapping
+public class MoveDataController {
+}

+ 1 - 1
boman-web-core/src/main/java/com/boman/web/core/controller/CommonController.java

@@ -2,7 +2,7 @@ package com.boman.web.core.controller;
 
 import com.alibaba.fastjson.JSONObject;
 import com.boman.domain.dto.*;
-import com.boman.web.core.domain.RowResult;
+import com.boman.domain.dto.RowResult;
 import com.boman.web.core.service.common.ICommonService;
 import org.springframework.web.bind.annotation.*;
 

+ 1 - 6
boman-web-core/src/main/java/com/boman/web/core/service/common/CommonServiceImpl.java

@@ -5,7 +5,7 @@ import com.boman.common.redis.RedisKey;
 import com.boman.common.redis.service.RedisService;
 import com.boman.domain.GenTable;
 import com.boman.domain.dto.*;
-import com.boman.web.core.domain.RowResult;
+import com.boman.domain.dto.RowResult;
 import com.boman.web.core.service.TableServiceCmdService;
 import com.boman.web.core.service.delete.IBaseDeleteService;
 import com.boman.web.core.service.save.IBaseSaveService;
@@ -14,16 +14,11 @@ import com.boman.web.core.service.update.IBaseUpdateService;
 import com.boman.web.core.utils.ColumnUtils;
 import com.boman.web.core.utils.IdUtils;
 import com.boman.web.core.utils.IdempotencyUtils;
-import com.google.protobuf.DescriptorProtos;
 import org.springframework.stereotype.Service;
-import org.springframework.web.bind.annotation.PathVariable;
 
 import javax.annotation.Resource;
 
-import java.text.SimpleDateFormat;
-import java.util.Date;
 import java.util.List;
-import java.util.UUID;
 import java.util.concurrent.TimeUnit;
 
 import static com.boman.common.core.utils.obj.ObjectUtils.requireNonNull;

+ 1 - 1
boman-web-core/src/main/java/com/boman/web/core/service/common/ICommonService.java

@@ -2,7 +2,7 @@ package com.boman.web.core.service.common;
 
 import com.alibaba.fastjson.JSONObject;
 import com.boman.domain.dto.*;
-import com.boman.web.core.domain.RowResult;
+import com.boman.domain.dto.RowResult;
 import org.springframework.web.bind.annotation.PathVariable;
 
 import java.util.List;

+ 1 - 1
boman-web-core/src/main/java/com/boman/web/core/service/delete/IBaseDeleteService.java

@@ -1,7 +1,7 @@
 package com.boman.web.core.service.delete;
 
 import com.alibaba.fastjson.JSONObject;
-import com.boman.web.core.domain.RowResult;
+import com.boman.domain.dto.RowResult;
 
 /**
  * @author shiqian

+ 1 - 2
boman-web-core/src/main/java/com/boman/web/core/service/save/IBaseSaveService.java

@@ -2,8 +2,7 @@ package com.boman.web.core.service.save;
 
 
 import com.alibaba.fastjson.JSONObject;
-import com.boman.web.core.domain.RowResult;
-import com.boman.web.core.domain.TableContext;
+import com.boman.domain.dto.RowResult;
 
 import java.util.List;