This commit is contained in:
tanghc
2019-11-14 17:21:28 +08:00
parent 0bdac8506b
commit efe08c6389
2 changed files with 29 additions and 1 deletions

View File

@@ -152,6 +152,16 @@ public class AlipayController {
return story;
}
@ApiAbility(ignoreValidate = true)
@GetMapping("/empinfo/get")
@ApiOperation(value="遗留接口", notes = "遗留接口")
public StoryResult getEmpInfo() {
StoryResult story = new StoryResult();
story.setId(1L);
story.setName("遗留接口");
return story;
}
// http://localhost:2222/alipay.story.get/
@ApiOperation(value="获取故事信息2", notes = "获取故事信息2的详细信息")
@ApiMapping(value = "alipay.story.get")