Compare commits

..

No commits in common. 'cf13a3a94f90795f531646ba29127795e04669c9' and 'a59eb8d5d5bcd6a2433a9864522b7afbed7ad5a8' have entirely different histories.

  1. 5
      application-tenant/tenant-admin/pom.xml
  2. 32
      common/common-association/src/main/java/apelet/association/controller/ProjectListController.java

5
application-tenant/tenant-admin/pom.xml

@ -147,11 +147,6 @@
<artifactId>common-ext</artifactId> <artifactId>common-ext</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> </dependency>
<dependency>
<groupId>apelet</groupId>
<artifactId>common-association</artifactId>
<version>1.0.0</version>
</dependency>

32
common/common-association/src/main/java/apelet/association/controller/ProjectListController.java

@ -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…
Cancel
Save