Compare commits
No commits in common. 'cf13a3a94f90795f531646ba29127795e04669c9' and 'a59eb8d5d5bcd6a2433a9864522b7afbed7ad5a8' have entirely different histories.
cf13a3a94f
...
a59eb8d5d5
2 changed files with 0 additions and 37 deletions
@ -1,32 +0,0 @@
@@ -1,32 +0,0 @@
|
||||
package apelet.association.controller; |
||||
|
||||
import apelet.common.core.annotation.MyRequestBody; |
||||
import apelet.common.core.object.MyPageParam; |
||||
import apelet.common.core.object.ResponseResult; |
||||
import apelet.common.core.object.TokenData; |
||||
import com.github.pagehelper.page.PageMethod; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
|
||||
@RestController |
||||
@RequestMapping("/tenantadmin/project") |
||||
public class ProjectListController { |
||||
|
||||
@GetMapping(value = "/list") |
||||
public ResponseResult<?> list() { |
||||
Map<String, Object> pammap= new HashMap<>(); |
||||
return ResponseResult.success(pammap); |
||||
} |
||||
|
||||
@PostMapping("/update") |
||||
public ResponseResult<Void> update( |
||||
@MyRequestBody String entryId){ |
||||
|
||||
return ResponseResult.success(null); |
||||
} |
||||
|
||||
|
||||
} |
||||
Loading…
Reference in new issue