|
@@ -1,27 +1,34 @@
|
|
|
package org.jeecg.modules.aa.controller;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import com.google.common.base.Strings;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.common.constant.CommonConstant;
|
|
|
+import org.jeecg.common.system.query.QueryGenerator;
|
|
|
import org.jeecg.common.system.util.JwtUtil;
|
|
|
import org.jeecg.common.util.RedisUtil;
|
|
|
-import org.jeecg.modules.aa.dto.AaCommodityDTO;
|
|
|
-import org.jeecg.modules.aa.dto.AaCommodityDTO2;
|
|
|
-import org.jeecg.modules.aa.dto.SMDTO;
|
|
|
+import org.jeecg.modules.aa.dto.*;
|
|
|
import org.jeecg.modules.aa.entity.*;
|
|
|
import org.jeecg.modules.aa.service.*;
|
|
|
import org.jeecg.modules.base.service.BaseCommonService;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.websocket.server.PathParam;
|
|
|
import java.math.BigInteger;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
@@ -61,15 +68,81 @@ public class APIIndexenterController {
|
|
|
@Autowired
|
|
|
private AaPlatFormParameterService aaPlatFormParameterService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IAaCommodityCodeService aaCommodityCodeService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IAaCommonProblemService aaCommonProblemService;
|
|
|
+
|
|
|
+ @Value("${jeecg.path.upload}")
|
|
|
+ private String upLoadPath;
|
|
|
+
|
|
|
+ @Value("${server.system.host}")
|
|
|
+ private String host;
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
+ @ApiOperation(value = "轮播管理-查询要展示的轮播内容", notes = "轮播管理-查询要展示的轮播内容")
|
|
|
+ @GetMapping(value = "/getSlideshowEnableList")
|
|
|
+ public Result<List<AaSlideshow>> getEnableList() {
|
|
|
+ LambdaQueryWrapper<AaSlideshow> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ queryWrapper.eq(AaSlideshow::getEnable, "1");
|
|
|
+ queryWrapper.orderByAsc(AaSlideshow::getSort);
|
|
|
+ List<AaSlideshow> list = aaSlideshowService.list(queryWrapper);
|
|
|
+ if (list != null && list.size() > 0) {
|
|
|
+ for (AaSlideshow aaSlideshow : list) {
|
|
|
+ // temp/介绍图_1669645664094.jpg
|
|
|
+ String cover = aaSlideshow.getCover();
|
|
|
+ aaSlideshow.setCover(host + "/sys/common/static/" + cover);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return Result.OK(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 27)
|
|
|
+ @ApiOperation(value = "防伪检测查询", notes = "防伪检测查询")
|
|
|
+ @GetMapping(value = "/authenticityTesting/{securityCode}")
|
|
|
+ public Result<AaCommodity> authenticityTesting(@PathVariable("securityCode") String securityCode) {
|
|
|
+ if (Strings.isNullOrEmpty(securityCode)){
|
|
|
+ return Result.error("请输入防伪码");
|
|
|
+ }
|
|
|
+ LambdaQueryWrapper<AaCommodityCode> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ queryWrapper.eq(AaCommodityCode::getSecurityCode, securityCode);
|
|
|
+ AaCommodityCode aaCommodityCode = aaCommodityCodeService.getOne(queryWrapper);
|
|
|
+ if (aaCommodityCode == null) {
|
|
|
+ return Result.OK("查询不存在,请核实防伪码",null);
|
|
|
+ }
|
|
|
+ AaCommodity byId = aaCommodityService.getById(aaCommodityCode.getCommodityId());
|
|
|
+ return Result.OK("您好,您所查询的是由巴博斯品牌生产的德国手表,该产品经验证为正品",byId);
|
|
|
+ }
|
|
|
|
|
|
+ @ApiOperationSupport(order = 50)
|
|
|
+ @ApiOperation(value = "获取常见问题", notes = "仅获取常见问题名称列表,查询常见问题答案详见 [Index首页、详情 → 获取常见问题答案](###获取常见问题答案) ")
|
|
|
+ @GetMapping(value = "/getAllCommonProblem")
|
|
|
+ public Result<List<AaCommonProblem>> getAllCommonProblem() {
|
|
|
+ QueryWrapper<AaCommonProblem> aaCommonProblemQueryWrapper = new QueryWrapper<>();
|
|
|
+ aaCommonProblemQueryWrapper.select("id,problem_name,problem_name_english,problem_name_german");
|
|
|
+ List<AaCommonProblem> list = aaCommonProblemService.list(aaCommonProblemQueryWrapper);
|
|
|
+ return Result.OK("成功",list);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 50)
|
|
|
+ @ApiOperation(value = "获取常见问题答案", notes = "获取常见问题答案")
|
|
|
+ @GetMapping(value = "/getProblemAnswer/{id}")
|
|
|
+ public Result<AaCommonProblem> getProblemAnswer(@ApiParam(name="id",value="问题id") @PathVariable("id")String id) {
|
|
|
+ AaCommonProblem byId = aaCommonProblemService.getById(id);
|
|
|
+ return Result.OK("成功", byId);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 900)
|
|
|
@ApiOperation(value = "获取轮播图", notes = "获取轮播图")
|
|
|
@PostMapping(value = "/getBanner")
|
|
|
+ @Deprecated
|
|
|
public Result<List<AaSlideshow>> getBanner() {
|
|
|
Result<List<AaSlideshow>> result = new Result<List<AaSlideshow>>();
|
|
|
try {
|
|
|
List<AaSlideshow> list = aaSlideshowService.list();
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setCover( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getCover() );
|
|
|
+ list.get( i ).setCover( host + "/sys/common/static/"+list.get( i ).getCover() );
|
|
|
}
|
|
|
|
|
|
result.setMessage( "获取轮播图成功" );
|
|
@@ -84,6 +157,7 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 60)
|
|
|
@ApiOperation(value = "获取海报图", notes = "获取海报图")
|
|
|
@PostMapping(value = "/getPoster")
|
|
|
public Result<List<AaPoster>> getPoster() {
|
|
@@ -91,7 +165,7 @@ public class APIIndexenterController {
|
|
|
try {
|
|
|
List<AaPoster> list = aaPosterService.list();
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setCover( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getCover() );
|
|
|
+ list.get( i ).setCover( host + "/sys/common/static/"+list.get( i ).getCover() );
|
|
|
}
|
|
|
result.setMessage( "获取海报图成功" );
|
|
|
result.setResult( list );
|
|
@@ -104,8 +178,54 @@ public class APIIndexenterController {
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
|
+ @ApiOperationSupport(order = 20)
|
|
|
+ @ApiOperation(value = "搜索商品", notes = "按商品名称模糊搜索商品")
|
|
|
+ @GetMapping(value = "/queryCommpdity")
|
|
|
+ public Result<List<AaCommodity>> getCommpdityD(@ApiParam(name="name",value="商品名称")String name,@ApiParam(name="nameEnglish",value="商品名称英文") String nameEnglish) {
|
|
|
+ LambdaQueryWrapper<AaCommodity> queryMapper = new LambdaQueryWrapper<>();
|
|
|
+ if(!Strings.isNullOrEmpty(name)) {
|
|
|
+ queryMapper.like(AaCommodity::getName,name);
|
|
|
+ }
|
|
|
+ if(!Strings.isNullOrEmpty(nameEnglish)) {
|
|
|
+ queryMapper.like(AaCommodity::getNameEnglish,nameEnglish);
|
|
|
+ }
|
|
|
+ List<AaCommodity> list = aaCommodityService.list(queryMapper);
|
|
|
+ return Result.OK(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 20)
|
|
|
+ @ApiOperation(value = "根据系列id获取子系列及其商品", notes = "获取系列及其商品")
|
|
|
+ @GetMapping(value = "/queryCommodityFl")
|
|
|
+ public Result<AaCommodityFl> queryCommodityFl(@ApiParam(name="commodityFlId",value="商品分类id")String commodityFlId) {
|
|
|
+ // 判断分类是几级获取分类的顶级父类id
|
|
|
+ AaCommodityFl topNode = aaCommodityFlService.findTopNode(commodityFlId);
|
|
|
+ if (topNode == null){
|
|
|
+ return Result.error("找不到此系列");
|
|
|
+ }
|
|
|
+ List<AaCommodityFl> allChild = aaCommodityFlService.findAllChild(topNode);
|
|
|
+ topNode.setCommodities(aaCommodityService.getCommodityByFl(topNode.getId()));
|
|
|
+ if (allChild !=null && !allChild.isEmpty()) {
|
|
|
+ // 设置系列树中的商品
|
|
|
+ setTreeCommodity(allChild);
|
|
|
+ }
|
|
|
+ return Result.OK(topNode);
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 根据系列树查询商品
|
|
|
+ * @param allChild
|
|
|
+ */
|
|
|
+ private void setTreeCommodity(List<AaCommodityFl> allChild) {
|
|
|
+ if (allChild==null || allChild.isEmpty()){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ for (AaCommodityFl aaCommodityFl : allChild) {
|
|
|
+ aaCommodityFl.setCommodities(aaCommodityService.getCommodityByFl(aaCommodityFl.getId()));
|
|
|
+ setTreeCommodity(aaCommodityFl.getChildren());
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
+ @ApiOperationSupport(order = 21)
|
|
|
@ApiOperation(value = "获取商品展示", notes = "获取商品展示")
|
|
|
@PostMapping(value = "/getShowC")
|
|
|
public Result<List<AaShow>> getShowC() {
|
|
@@ -113,7 +233,7 @@ public class APIIndexenterController {
|
|
|
try {
|
|
|
List<AaShow> list = aaShowService.list();
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setCover( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getCover() );
|
|
|
+ list.get( i ).setCover( host + "/sys/common/static/"+list.get( i ).getCover() );
|
|
|
}
|
|
|
result.setMessage( "获取商品展示成功" );
|
|
|
result.setResult( list );
|
|
@@ -127,7 +247,7 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ @ApiOperationSupport(order = 22)
|
|
|
@ApiOperation(value = "获取商品列表", notes = "获取商品列表")
|
|
|
@PostMapping(value = "/getCommpdityList")
|
|
|
public Result<List<AaCommodity>> getCommpdityList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
@@ -179,9 +299,9 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
- }
|
|
|
+ //for (int i = 0;i<list.size();i++){
|
|
|
+ // list.get( i ).setPic( host + "/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ //}
|
|
|
result.setMessage( "获取商品列表成功" );
|
|
|
result.setResult( list );
|
|
|
result.setCode( 200 );
|
|
@@ -194,14 +314,15 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ @ApiOperationSupport(order = 23)
|
|
|
@ApiOperation(value = "获取商品详细", notes = "获取商品详细")
|
|
|
@PostMapping(value = "/getCommpdityD")
|
|
|
public Result<AaCommodity> getCommpdityD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
|
Result<AaCommodity> result = new Result<AaCommodity>();
|
|
|
try {
|
|
|
AaCommodity byId = aaCommodityService.getById( aaCommodityDTO.getId() );
|
|
|
- byId.setPic( "http://8.134.179.70:9999/sys/common/static/"+byId.getPic() );
|
|
|
+ //byId.setPic( host + "/sys/common/static/"+byId.getPic() );
|
|
|
+ byId.setVideo( host + "/sys/common/static/"+byId.getVideo() );
|
|
|
result.setMessage( "获取商品详细成功" );
|
|
|
result.setResult( byId );
|
|
|
result.setCode( 200 );
|
|
@@ -215,8 +336,10 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 902)
|
|
|
@ApiOperation(value = "防伪监测", notes = "防伪监测")
|
|
|
@PostMapping(value = "/securityMonitoring")
|
|
|
+ @Deprecated
|
|
|
public Result<Boolean> securityMonitoring(@RequestBody SMDTO smdto) {
|
|
|
Result<Boolean> result = new Result<Boolean>();
|
|
|
try {
|
|
@@ -243,8 +366,8 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- @ApiOperation(value="获取系统配置", notes="获取系统配置")
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
|
+ @ApiOperation(value="获取使用条款、隐私协议、关于我们配置", notes="获取使用条款、隐私协议、关于我们配置")
|
|
|
@PostMapping(value = "/configInfo")
|
|
|
public Result<PlatformParameter> configInfo(){
|
|
|
Result<PlatformParameter> result = new Result<PlatformParameter>();
|
|
@@ -263,16 +386,23 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value="获取首页配置", notes="获取首页配置")
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
|
+ @ApiOperation(value="获取联系方式信息", notes="获取联系方式信息")
|
|
|
@PostMapping(value = "/indexInfo")
|
|
|
public Result<AaPlatformParameter> indexInfo(){
|
|
|
Result<AaPlatformParameter> result = new Result<AaPlatformParameter>();
|
|
|
try {
|
|
|
|
|
|
List<AaPlatformParameter> list = aaPlatFormParameterService.list();
|
|
|
- list.get( 0 ).setAaa( "http://8.134.179.70:9999/sys/common/static/"+ list.get( 0 ).getAaa() );
|
|
|
- list.get( 0 ).setBbb( "http://8.134.179.70:9999/sys/common/static/"+ list.get( 0 ).getBbb() );
|
|
|
- list.get( 0 ).setCcc( "http://8.134.179.70:9999/sys/common/static/"+ list.get( 0 ).getCcc() );
|
|
|
+ //list.get( 0 ).setAaa( host + "/sys/common/static/"+ list.get( 0 ).getAaa() );
|
|
|
+ //list.get( 0 ).setBbb( host + "/sys/common/static/"+ list.get( 0 ).getBbb() );
|
|
|
+ //list.get( 0 ).setCcc( host + "/sys/common/static/"+ list.get( 0 ).getCcc() );
|
|
|
+ if (!list.isEmpty()){
|
|
|
+ AaPlatformParameter aaPlatformParameter = list.get(0);
|
|
|
+ if (!Strings.isNullOrEmpty(aaPlatformParameter.getWechatQrCode()) && !aaPlatformParameter.getWechatQrCode().startsWith("http")){
|
|
|
+ aaPlatformParameter.setWechatQrCode(host + "/" + aaPlatformParameter.getWechatQrCode());
|
|
|
+ }
|
|
|
+ }
|
|
|
result.setMessage("获取首页配置成功");
|
|
|
result.setResult( list.get( 0 ) );
|
|
|
result.setCode( 200 );
|
|
@@ -285,8 +415,10 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
|
@ApiOperation(value = "获取新闻列表", notes = "获取新闻列表")
|
|
|
@PostMapping(value = "/getNewsList")
|
|
|
+ @Deprecated
|
|
|
public Result<List<AaNews>> getNewsList(@RequestBody AaCommodityDTO2 aaCommodityDTO) {
|
|
|
Result<List<AaNews>> result = new Result<List<AaNews>>();
|
|
|
try {
|
|
@@ -301,7 +433,7 @@ public class APIIndexenterController {
|
|
|
List<AaNews> list = aaNewsService.list( query );
|
|
|
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ list.get( i ).setPic( host + "/sys/common/static/"+list.get( i ).getPic() );
|
|
|
}
|
|
|
result.setMessage( "获取新闻列表成功" );
|
|
|
result.setResult( list );
|
|
@@ -314,15 +446,49 @@ public class APIIndexenterController {
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
|
+ @ApiOperation(value = "获取新闻页顶部资源", notes = "获取新闻页顶部资源")
|
|
|
+ @PostMapping(value = "/getNewsHeadAssets")
|
|
|
+ public Result<AaPoster> getNewsHeadAssets() {
|
|
|
+ AaPoster byId = aaPosterService.getById("1734144586119450625");
|
|
|
+ byId.setCover(host + "/sys/common/static/" + byId.getCover());
|
|
|
+ return Result.OK(byId);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperationSupport(order = 30)
|
|
|
+ @ApiOperation(value="获取新闻分页列表", notes="获取新闻分页列表")
|
|
|
+ @PostMapping(value = "/getNewsPageList")
|
|
|
+ public Result<IPage<AaNews>> queryPageList(@RequestBody AaNewsDTO aaNews,
|
|
|
+ HttpServletRequest req) {
|
|
|
+ Integer pageNo = aaNews.getPageNo();
|
|
|
+ if (pageNo ==null) {
|
|
|
+ pageNo = 1;
|
|
|
+ }
|
|
|
+ Integer pageSize = aaNews.getPageSize();
|
|
|
+ if (pageSize == null) {
|
|
|
+ pageSize = 10;
|
|
|
+ }
|
|
|
+ QueryWrapper<AaNews> queryWrapper = new QueryWrapper<>();
|
|
|
+ if (!Strings.isNullOrEmpty(aaNews.getTypeId())){
|
|
|
+ queryWrapper.eq("type_id",aaNews.getTypeId());
|
|
|
+ }
|
|
|
+ queryWrapper.select("id,pic,title,title_english,des,des_english,weight,type_id,create_time");
|
|
|
+ queryWrapper.orderByDesc("create_time");
|
|
|
+ Page<AaNews> page = new Page<AaNews>(pageNo, pageSize);
|
|
|
+ IPage<AaNews> pageList = aaNewsService.page(page, queryWrapper);
|
|
|
+ return Result.OK(pageList);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
|
@ApiOperation(value = "获取新闻详细", notes = "获取新闻详细")
|
|
|
@PostMapping(value = "/getNewsD")
|
|
|
public Result<AaNews> getNewsD(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
|
Result<AaNews> result = new Result<AaNews>();
|
|
|
try {
|
|
|
AaNews byId = aaNewsService.getById( aaCommodityDTO.getId() );
|
|
|
- byId.setPic( "http://8.134.179.70:9999/sys/common/static/"+byId.getPic() );
|
|
|
+ byId.setPic( host + "/sys/common/static/"+byId.getPic() );
|
|
|
result.setMessage( "获取新闻详细成功" );
|
|
|
result.setResult( byId );
|
|
|
result.setCode( 200 );
|
|
@@ -335,6 +501,7 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 25)
|
|
|
@ApiOperation(value = "获取商品一级分类", notes = "获取商品一级分类")
|
|
|
@PostMapping(value = "/gety")
|
|
|
public Result<List<AaCommodityFl>> gety() {
|
|
@@ -344,7 +511,22 @@ public class APIIndexenterController {
|
|
|
query.eq( "pid",0 );
|
|
|
List<AaCommodityFl> list = aaCommodityFlService.list(query);
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ AaCommodityFl aaCommodityFl = list.get(i);
|
|
|
+ String pic = aaCommodityFl.getPic();
|
|
|
+ if (!Strings.isNullOrEmpty(pic)) {
|
|
|
+ if (pic.contains(",")) {
|
|
|
+ String[] split = pic.split(",");
|
|
|
+ if (split.length >=2){
|
|
|
+ aaCommodityFl.setPic(host + "/sys/common/static/"+split[0]);
|
|
|
+ aaCommodityFl.setPic2(host + "/sys/common/static/"+split[1]);
|
|
|
+ } else if (split.length == 1){
|
|
|
+ aaCommodityFl.setPic(host + "/sys/common/static/"+split[0]);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ aaCommodityFl.setPic(host + "/sys/common/static/"+aaCommodityFl.getPic());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ aaCommodityFl.setAssets( host + "/sys/common/static/"+ aaCommodityFl.getAssets() );
|
|
|
}
|
|
|
result.setMessage( "获取商品一级分类成功" );
|
|
|
result.setResult( list );
|
|
@@ -358,6 +540,7 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 26)
|
|
|
@ApiOperation(value = "获取商品二级分类", notes = "获取商品二级分类")
|
|
|
@PostMapping(value = "/gete")
|
|
|
public Result< List<AaCommodityFl>> gete(@RequestBody AaCommodityDTO aaCommodityDTO) {
|
|
@@ -367,7 +550,8 @@ public class APIIndexenterController {
|
|
|
query.eq( "pid",aaCommodityDTO.getId() );
|
|
|
List<AaCommodityFl> list = aaCommodityFlService.list(query);
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ list.get( i ).setPic( host + "/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ list.get( i ).setAssets( host + "/sys/common/static/"+list.get( i ).getAssets() );
|
|
|
}
|
|
|
result.setMessage( "获取商品二级分类成功" );
|
|
|
result.setResult( list );
|
|
@@ -381,14 +565,15 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "获取新闻分类", notes = "获取商品二级分类")
|
|
|
+ @ApiOperationSupport(order = 32)
|
|
|
+ @ApiOperation(value = "获取新闻分类", notes = "获取新闻分类")
|
|
|
@PostMapping(value = "/getNewsfl")
|
|
|
public Result<List<AaNewsFl>> getNewsfl() {
|
|
|
Result<List<AaNewsFl>> result = new Result<List<AaNewsFl>>();
|
|
|
try {
|
|
|
List<AaNewsFl> list = aaNewsFlService.list();
|
|
|
for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
+ list.get( i ).setPic( host + "/sys/common/static/"+list.get( i ).getPic() );
|
|
|
}
|
|
|
result.setMessage( "获取新闻分类成功" );
|
|
|
result.setResult( list );
|
|
@@ -402,45 +587,57 @@ public class APIIndexenterController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
|
@ApiOperation(value = "下一篇新闻", notes = "下一篇新闻")
|
|
|
@PostMapping(value = "/getNast")
|
|
|
- public Result<List<AaNewsFl>> getNast() {
|
|
|
- Result<List<AaNewsFl>> result = new Result<List<AaNewsFl>>();
|
|
|
- try {
|
|
|
- List<AaNewsFl> list = aaNewsFlService.list();
|
|
|
- for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
- }
|
|
|
- result.setMessage( "获取新闻分类成功" );
|
|
|
- result.setResult( list );
|
|
|
- result.setCode( 200 );
|
|
|
- return result;
|
|
|
- } catch (Exception e) {
|
|
|
- result.setMessage( "获取新闻分类失败" );
|
|
|
- result.setResult( null );
|
|
|
- result.setCode( 0 );
|
|
|
- return result;
|
|
|
+ public Result<AaNews> getNast(@RequestBody AaNewsQueryDTO aaNewsQueryDTO) {
|
|
|
+ if (aaNewsQueryDTO == null || Strings.isNullOrEmpty(aaNewsQueryDTO.getId())) {
|
|
|
+ return Result.error("找不到新闻编码!");
|
|
|
+ }
|
|
|
+ AaNews byId = aaNewsService.getById(aaNewsQueryDTO.getId());
|
|
|
+ if (byId == null){
|
|
|
+ return Result.error("没有查询到新闻!");
|
|
|
+ }
|
|
|
+ LambdaQueryWrapper<AaNews> aaNewsLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ if (aaNewsQueryDTO.getTypeId() != null && !Strings.isNullOrEmpty(aaNewsQueryDTO.getTypeId())) {
|
|
|
+ aaNewsLambdaQueryWrapper.eq(AaNews::getTypeId,aaNewsQueryDTO.getTypeId());
|
|
|
+ }
|
|
|
+ aaNewsLambdaQueryWrapper.lt(AaNews::getCreateTime,byId.getCreateTime())
|
|
|
+ .orderByDesc(AaNews::getCreateTime);
|
|
|
+ List<AaNews> list1 = aaNewsService.list(aaNewsLambdaQueryWrapper);
|
|
|
+ if (list1!=null && list1.size() > 0 ){
|
|
|
+ AaNews aaNews = list1.get(0);
|
|
|
+ aaNews.setPic(host + "/sys/common/static/"+ aaNews.getPic());
|
|
|
+ return Result.OK("成功!", aaNews);
|
|
|
+ } else {
|
|
|
+ return Result.OK("没有下一篇了", null);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperationSupport(order = 31)
|
|
|
@ApiOperation(value = "上一篇新闻", notes = "上一篇新闻")
|
|
|
@PostMapping(value = "/getLast")
|
|
|
- public Result<List<AaNewsFl>> getLast() {
|
|
|
- Result<List<AaNewsFl>> result = new Result<List<AaNewsFl>>();
|
|
|
- try {
|
|
|
- List<AaNewsFl> list = aaNewsFlService.list();
|
|
|
- for (int i = 0;i<list.size();i++){
|
|
|
- list.get( i ).setPic( "http://8.134.179.70:9999/sys/common/static/"+list.get( i ).getPic() );
|
|
|
- }
|
|
|
- result.setMessage( "获取新闻分类成功" );
|
|
|
- result.setResult( list );
|
|
|
- result.setCode( 200 );
|
|
|
- return result;
|
|
|
- } catch (Exception e) {
|
|
|
- result.setMessage( "获取新闻分类失败" );
|
|
|
- result.setResult( null );
|
|
|
- result.setCode( 0 );
|
|
|
- return result;
|
|
|
+ public Result<AaNews> getLast(@RequestBody AaNewsQueryDTO aaNewsQueryDTO) {
|
|
|
+ if (aaNewsQueryDTO == null || Strings.isNullOrEmpty(aaNewsQueryDTO.getId())) {
|
|
|
+ return Result.error("找不到新闻编码!");
|
|
|
+ }
|
|
|
+ AaNews byId = aaNewsService.getById(aaNewsQueryDTO.getId());
|
|
|
+ if (byId == null){
|
|
|
+ return Result.error("没有查询到新闻!");
|
|
|
+ }
|
|
|
+ LambdaQueryWrapper<AaNews> aaNewsLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ if (aaNewsQueryDTO.getTypeId() != null && !Strings.isNullOrEmpty(aaNewsQueryDTO.getTypeId())) {
|
|
|
+ aaNewsLambdaQueryWrapper.eq(AaNews::getTypeId,aaNewsQueryDTO.getTypeId());
|
|
|
+ }
|
|
|
+ aaNewsLambdaQueryWrapper.gt(AaNews::getCreateTime,byId.getCreateTime())
|
|
|
+ .orderByAsc(AaNews::getCreateTime);
|
|
|
+ List<AaNews> list1 = aaNewsService.list(aaNewsLambdaQueryWrapper);
|
|
|
+ if (list1!=null && list1.size() > 0 ){
|
|
|
+ AaNews aaNews = list1.get(0);
|
|
|
+ aaNews.setPic(host + "/sys/common/static/"+ aaNews.getPic());
|
|
|
+ return Result.OK("成功!", aaNews);
|
|
|
+ } else {
|
|
|
+ return Result.OK("没有上一篇了", null);
|
|
|
}
|
|
|
}
|
|
|
|