Bladeren bron

定义接口

gushoubang 9 maanden geleden
bovenliggende
commit
d60f21b649

+ 1 - 0
onemap-modules/onemap-apply/src/main/java/com/onemap/apply/domain/tdgy/vo/LandIdleConfirmVo.java

@@ -12,6 +12,7 @@ public class LandIdleConfirmVo {
     // 土地id
     @NotNull(message = "土地id不能为空")
     private String landId;
+    // 是否闲置
     private Boolean isIdle;
     // 闲置原因
     private String idleReason;

+ 0 - 1
onemap-modules/onemap-apply/src/main/java/com/onemap/apply/service/impl/tdgy/TdgyServiceImp.java

@@ -154,7 +154,6 @@ public class TdgyServiceImp implements TdgyService {
         String uuid = IdUtils.simpleUUID();
         landIdleDisposalDTO.setId(uuid);
         landIdleDisposalMapper.insert(landIdleDisposalDTO);
-
         return RequestResult.success();
     }
 }