|
|
@@ -0,0 +1,16 @@
|
|
|
+package com.usoftchina.saas.commons.controller;
|
|
|
+
|
|
|
+import com.usoftchina.saas.base.Result;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+public class CommonController {
|
|
|
+
|
|
|
+ @RequestMapping("/{caller}/export")
|
|
|
+ public Result export(@PathVariable("caller") String caller){
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
+
|
|
|
+}
|