Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion july_api/july_api.iml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
Expand Down
5 changes: 2 additions & 3 deletions july_api/src/main/java/com/jk/buyer/service/BuyerService.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.jk.buyer.service;

import com.jk.model.Test;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

public interface BuyerService {
@GetMapping("queryList")
Test queryOrderById(@RequestParam("testId") String testId);
/* @GetMapping("queryList")
Test queryOrderById(@RequestParam("testId") String testId);*/

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.jk.customization.service;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.Map;

@RequestMapping("cc")
public interface CustomizationServiceApi {

@GetMapping("querylist")
String queryList(String userId);

@GetMapping("getInquiryList")
Map<String, Object> getInquiryList();
}