|
@@ -8,6 +8,7 @@ import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
+import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -314,4 +315,15 @@ public interface IApplyInfoFacade {
|
|
@PutMapping("updateOrgInfos")
|
|
@PutMapping("updateOrgInfos")
|
|
ResponseStatus updateOrgInfos(@RequestParam("targetOrgCode") String targetOrgCode, @RequestParam("fullName") String fullName,
|
|
ResponseStatus updateOrgInfos(@RequestParam("targetOrgCode") String targetOrgCode, @RequestParam("fullName") String fullName,
|
|
@RequestParam("code") String code);
|
|
@RequestParam("code") String code);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 应用数量统计
|
|
|
|
+ *
|
|
|
|
+ * @param startTime
|
|
|
|
+ * @param endTime
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("count")
|
|
|
|
+ Long count(@RequestParam(value = "startTime", required = false) Date startTime,
|
|
|
|
+ @RequestParam(value = "endTime", required = false) Date endTime);
|
|
}
|
|
}
|