|
@@ -80,7 +80,7 @@ public class APIIndexenterController {
|
|
@Value("${server.system.host}")
|
|
@Value("${server.system.host}")
|
|
private String host;
|
|
private String host;
|
|
|
|
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
@ApiOperation(value = "轮播管理-查询要展示的轮播内容", notes = "轮播管理-查询要展示的轮播内容")
|
|
@ApiOperation(value = "轮播管理-查询要展示的轮播内容", notes = "轮播管理-查询要展示的轮播内容")
|
|
@GetMapping(value = "/getSlideshowEnableList")
|
|
@GetMapping(value = "/getSlideshowEnableList")
|
|
public Result<List<AaSlideshow>> getEnableList() {
|
|
public Result<List<AaSlideshow>> getEnableList() {
|
|
@@ -97,7 +97,7 @@ public class APIIndexenterController {
|
|
return Result.OK(list);
|
|
return Result.OK(list);
|
|
}
|
|
}
|
|
|
|
|
|
- @ApiOperationSupport(order = 2)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 27)
|
|
@ApiOperation(value = "防伪检测查询", notes = "防伪检测查询")
|
|
@ApiOperation(value = "防伪检测查询", notes = "防伪检测查询")
|
|
@GetMapping(value = "/authenticityTesting/{securityCode}")
|
|
@GetMapping(value = "/authenticityTesting/{securityCode}")
|
|
public Result<AaCommodity> authenticityTesting(@PathVariable("securityCode") String securityCode) {
|
|
public Result<AaCommodity> authenticityTesting(@PathVariable("securityCode") String securityCode) {
|
|
@@ -114,7 +114,7 @@ public class APIIndexenterController {
|
|
return Result.OK("您好,您所查询的是由巴博斯品牌生产的德国手表,该产品经验证为正品",byId);
|
|
return Result.OK("您好,您所查询的是由巴博斯品牌生产的德国手表,该产品经验证为正品",byId);
|
|
}
|
|
}
|
|
|
|
|
|
- @ApiOperationSupport(order = 3)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 50)
|
|
@ApiOperation(value = "获取常见问题", notes = "仅获取常见问题名称列表,查询常见问题答案详见 [Index首页、详情 → 获取常见问题答案](###获取常见问题答案) ")
|
|
@ApiOperation(value = "获取常见问题", notes = "仅获取常见问题名称列表,查询常见问题答案详见 [Index首页、详情 → 获取常见问题答案](###获取常见问题答案) ")
|
|
@GetMapping(value = "/getAllCommonProblem")
|
|
@GetMapping(value = "/getAllCommonProblem")
|
|
public Result<List<AaCommonProblem>> getAllCommonProblem() {
|
|
public Result<List<AaCommonProblem>> getAllCommonProblem() {
|
|
@@ -124,7 +124,7 @@ public class APIIndexenterController {
|
|
return Result.OK("成功",list);
|
|
return Result.OK("成功",list);
|
|
}
|
|
}
|
|
|
|
|
|
- @ApiOperationSupport(order = 3)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 50)
|
|
@ApiOperation(value = "获取常见问题答案", notes = "获取常见问题答案")
|
|
@ApiOperation(value = "获取常见问题答案", notes = "获取常见问题答案")
|
|
@GetMapping(value = "/getProblemAnswer/{id}")
|
|
@GetMapping(value = "/getProblemAnswer/{id}")
|
|
public Result<AaCommonProblem> getProblemAnswer(@ApiParam(name="id",value="问题id") @PathVariable("id")String id) {
|
|
public Result<AaCommonProblem> getProblemAnswer(@ApiParam(name="id",value="问题id") @PathVariable("id")String id) {
|
|
@@ -132,6 +132,7 @@ public class APIIndexenterController {
|
|
return Result.OK("成功", byId);
|
|
return Result.OK("成功", byId);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 900)
|
|
@ApiOperation(value = "获取轮播图", notes = "获取轮播图")
|
|
@ApiOperation(value = "获取轮播图", notes = "获取轮播图")
|
|
@PostMapping(value = "/getBanner")
|
|
@PostMapping(value = "/getBanner")
|
|
@Deprecated
|
|
@Deprecated
|
|
@@ -155,6 +156,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 60)
|
|
@ApiOperation(value = "获取海报图", notes = "获取海报图")
|
|
@ApiOperation(value = "获取海报图", notes = "获取海报图")
|
|
@PostMapping(value = "/getPoster")
|
|
@PostMapping(value = "/getPoster")
|
|
public Result<List<AaPoster>> getPoster() {
|
|
public Result<List<AaPoster>> getPoster() {
|
|
@@ -175,7 +177,7 @@ public class APIIndexenterController {
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ApiOperationSupport(order = 20)
|
|
@ApiOperation(value = "搜索商品", notes = "按商品名称模糊搜索商品")
|
|
@ApiOperation(value = "搜索商品", notes = "按商品名称模糊搜索商品")
|
|
@GetMapping(value = "/queryCommpdity")
|
|
@GetMapping(value = "/queryCommpdity")
|
|
public Result<List<AaCommodity>> getCommpdityD(@ApiParam(name="name",value="商品名称")String name) {
|
|
public Result<List<AaCommodity>> getCommpdityD(@ApiParam(name="name",value="商品名称")String name) {
|
|
@@ -185,6 +187,7 @@ public class APIIndexenterController {
|
|
return Result.OK(list);
|
|
return Result.OK(list);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 21)
|
|
@ApiOperation(value = "获取商品展示", notes = "获取商品展示")
|
|
@ApiOperation(value = "获取商品展示", notes = "获取商品展示")
|
|
@PostMapping(value = "/getShowC")
|
|
@PostMapping(value = "/getShowC")
|
|
public Result<List<AaShow>> getShowC() {
|
|
public Result<List<AaShow>> getShowC() {
|
|
@@ -206,7 +209,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ @ApiOperationSupport(order = 22)
|
|
@ApiOperation(value = "获取商品列表", notes = "获取商品列表")
|
|
@ApiOperation(value = "获取商品列表", notes = "获取商品列表")
|
|
@PostMapping(value = "/getCommpdityList")
|
|
@PostMapping(value = "/getCommpdityList")
|
|
public Result<List<AaCommodity>> getCommpdityList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
public Result<List<AaCommodity>> getCommpdityList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
@@ -273,7 +276,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ @ApiOperationSupport(order = 23)
|
|
@ApiOperation(value = "获取商品详细", notes = "获取商品详细")
|
|
@ApiOperation(value = "获取商品详细", notes = "获取商品详细")
|
|
@PostMapping(value = "/getCommpdityD")
|
|
@PostMapping(value = "/getCommpdityD")
|
|
public Result<AaCommodity> getCommpdityD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
public Result<AaCommodity> getCommpdityD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
@@ -294,6 +297,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 902)
|
|
@ApiOperation(value = "防伪监测", notes = "防伪监测")
|
|
@ApiOperation(value = "防伪监测", notes = "防伪监测")
|
|
@PostMapping(value = "/securityMonitoring")
|
|
@PostMapping(value = "/securityMonitoring")
|
|
@Deprecated
|
|
@Deprecated
|
|
@@ -322,6 +326,8 @@ public class APIIndexenterController {
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
@ApiOperation(value="获取使用条款、隐私协议、关于我们配置", notes="获取使用条款、隐私协议、关于我们配置")
|
|
@ApiOperation(value="获取使用条款、隐私协议、关于我们配置", notes="获取使用条款、隐私协议、关于我们配置")
|
|
@PostMapping(value = "/configInfo")
|
|
@PostMapping(value = "/configInfo")
|
|
public Result<PlatformParameter> configInfo(){
|
|
public Result<PlatformParameter> configInfo(){
|
|
@@ -341,6 +347,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
@ApiOperation(value="获取联系方式信息", notes="获取联系方式信息")
|
|
@ApiOperation(value="获取联系方式信息", notes="获取联系方式信息")
|
|
@PostMapping(value = "/indexInfo")
|
|
@PostMapping(value = "/indexInfo")
|
|
public Result<AaPlatformParameter> indexInfo(){
|
|
public Result<AaPlatformParameter> indexInfo(){
|
|
@@ -369,6 +376,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 30)
|
|
@ApiOperation(value = "获取新闻列表", notes = "获取新闻列表")
|
|
@ApiOperation(value = "获取新闻列表", notes = "获取新闻列表")
|
|
@PostMapping(value = "/getNewsList")
|
|
@PostMapping(value = "/getNewsList")
|
|
public Result<List<AaNews>> getNewsList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
public Result<List<AaNews>> getNewsList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
@@ -400,6 +408,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
@ApiOperation(value = "获取新闻详细", notes = "获取新闻详细")
|
|
@ApiOperation(value = "获取新闻详细", notes = "获取新闻详细")
|
|
@PostMapping(value = "/getNewsD")
|
|
@PostMapping(value = "/getNewsD")
|
|
public Result<AaNews> getNewsD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
public Result<AaNews> getNewsD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
@@ -419,6 +428,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 25)
|
|
@ApiOperation(value = "获取商品一级分类", notes = "获取商品一级分类")
|
|
@ApiOperation(value = "获取商品一级分类", notes = "获取商品一级分类")
|
|
@PostMapping(value = "/gety")
|
|
@PostMapping(value = "/gety")
|
|
public Result<List<AaCommodityFl>> gety() {
|
|
public Result<List<AaCommodityFl>> gety() {
|
|
@@ -443,6 +453,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 26)
|
|
@ApiOperation(value = "获取商品二级分类", notes = "获取商品二级分类")
|
|
@ApiOperation(value = "获取商品二级分类", notes = "获取商品二级分类")
|
|
@PostMapping(value = "/gete")
|
|
@PostMapping(value = "/gete")
|
|
public Result< List<AaCommodityFl>> gete(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
public Result< List<AaCommodityFl>> gete(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
@@ -467,6 +478,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 32)
|
|
@ApiOperation(value = "获取新闻分类", notes = "获取新闻分类")
|
|
@ApiOperation(value = "获取新闻分类", notes = "获取新闻分类")
|
|
@PostMapping(value = "/getNewsfl")
|
|
@PostMapping(value = "/getNewsfl")
|
|
public Result<List<AaNewsFl>> getNewsfl() {
|
|
public Result<List<AaNewsFl>> getNewsfl() {
|
|
@@ -488,6 +500,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 33)
|
|
@ApiOperation(value = "下一篇新闻", notes = "下一篇新闻")
|
|
@ApiOperation(value = "下一篇新闻", notes = "下一篇新闻")
|
|
@PostMapping(value = "/getNast")
|
|
@PostMapping(value = "/getNast")
|
|
public Result<List<AaNewsFl>> getNast() {
|
|
public Result<List<AaNewsFl>> getNast() {
|
|
@@ -509,6 +522,7 @@ public class APIIndexenterController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 34)
|
|
@ApiOperation(value = "上一篇新闻", notes = "上一篇新闻")
|
|
@ApiOperation(value = "上一篇新闻", notes = "上一篇新闻")
|
|
@PostMapping(value = "/getLast")
|
|
@PostMapping(value = "/getLast")
|
|
public Result<List<AaNewsFl>> getLast() {
|
|
public Result<List<AaNewsFl>> getLast() {
|