|
|
|
@@ -1,70 +1,108 @@ |
|
|
|
package com.simple.controller; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import org.apache.log4j.Logger; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.util.Assert; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
import com.github.pagehelper.PageInfo; |
|
|
|
import com.simple.common.Result; |
|
|
|
import com.simple.common.ResultData; |
|
|
|
|
|
|
|
import com.simple.domain.po.WxTags; |
|
|
|
import com.simple.domain.vo.WxTagsVo; |
|
|
|
import com.simple.service.WxTagsService; |
|
|
|
import io.swagger.annotations.ApiImplicitParam; |
|
|
|
import io.swagger.annotations.ApiImplicitParams; |
|
|
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("wxTags") |
|
|
|
@Api(description="标签弹窗接口") |
|
|
|
public class WxTagsController extends BaseController |
|
|
|
{ |
|
|
|
@Autowired |
|
|
|
private WxTagsService wxTagsService; |
|
|
|
|
|
|
|
private Logger logger = Logger.getLogger(WxTagsController.class); |
|
|
|
|
|
|
|
@ApiOperation("分页列表接口") |
|
|
|
@GetMapping("list") |
|
|
|
@ApiImplicitParams({ |
|
|
|
@ApiImplicitParam(name="pageNum",value="页数",dataType="int", paramType = "query",required=true), |
|
|
|
@ApiImplicitParam(name="pageSize",value="每页条数",dataType="int", paramType = "query",required=true)}) |
|
|
|
public ResultData list(@ModelAttribute WxTags wxTags,Integer pageNum, Integer pageSize) { |
|
|
|
if (null == wxTags) wxTags = new WxTags(); |
|
|
|
final PageInfo<WxTags> page = wxTagsService.listAsPage(wxTags, pageNum, pageSize); |
|
|
|
return new ResultData(page); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("新增接口") |
|
|
|
@PostMapping("add") |
|
|
|
public ResultData add(@RequestBody WxTags wxTags) { |
|
|
|
//Assert.notNull(wxTags.getName(), "角色名不能为空"); |
|
|
|
//Assert.isTrue(!checkUnique(sysRole.getName(), null), "重复的角色名"); |
|
|
|
wxTagsService.saveOrUpdate(wxTags); |
|
|
|
return new ResultData(); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id更新接口") |
|
|
|
@PostMapping("update") |
|
|
|
public ResultData update(@RequestBody WxTags wxTags) { |
|
|
|
wxTagsService.saveOrUpdate(wxTags); |
|
|
|
return new ResultData(); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id删除接口") |
|
|
|
@GetMapping("/del") |
|
|
|
@ApiImplicitParam(name="id",value="id",dataType="Long", paramType = "query",required=true) |
|
|
|
public ResultData delete(Long id) { |
|
|
|
wxTagsService.deleteById(id); |
|
|
|
return new ResultData(Result.SUCCESS, "删除成功", null); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id查询接口") |
|
|
|
@GetMapping("/findById") |
|
|
|
@ApiImplicitParam(name="id",value="id",dataType="Long", paramType = "query",required=true) |
|
|
|
public ResultData findById(Long id) { |
|
|
|
return new ResultData(Result.SUCCESS,"查询成功",wxTagsService.getById(id)); |
|
|
|
@GetMapping("getAllList") |
|
|
|
@ApiOperation("标签弹窗接口") |
|
|
|
public ResultData getAllList() { |
|
|
|
List<WxTagsVo> type1List = new ArrayList<>(); |
|
|
|
List<WxTags> tags = wxTagsService.findType1Value(); |
|
|
|
for(WxTags t:tags) { |
|
|
|
WxTagsVo vo =new WxTagsVo(); |
|
|
|
vo.setValue(t.getType1()); |
|
|
|
List<WxTagsVo> type2List =new ArrayList<>(); |
|
|
|
List<WxTags> type2s = wxTagsService.findType2Value(t.getType1()); |
|
|
|
for(WxTags wt:type2s) { |
|
|
|
WxTagsVo v = new WxTagsVo(); |
|
|
|
v.setValue(wt.getType2()); |
|
|
|
List<WxTagsVo> list = new ArrayList<>(); |
|
|
|
WxTags tag = new WxTags(); |
|
|
|
tag.setType2(wt.getType2()); |
|
|
|
PageInfo<WxTags> page = wxTagsService.listAsPage(tag, 1, 1000); |
|
|
|
for(WxTags wxT : page.getList()) { |
|
|
|
WxTagsVo wxVo = new WxTagsVo(); |
|
|
|
wxVo.setValue(wxT.getName()); |
|
|
|
list.add(wxVo); |
|
|
|
} |
|
|
|
v.setSubTags(list); |
|
|
|
type2List.add(v); |
|
|
|
vo.setSubTags(type2List); |
|
|
|
} |
|
|
|
type1List.add(vo); |
|
|
|
} |
|
|
|
return new ResultData(Result.SUCCESS,"ok",type1List); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @ApiOperation("分页列表接口") |
|
|
|
// @GetMapping("list") |
|
|
|
// @ApiImplicitParams({ |
|
|
|
// @ApiImplicitParam(name="pageNum",value="页数",dataType="int", paramType = "query",required=true), |
|
|
|
// @ApiImplicitParam(name="pageSize",value="每页条数",dataType="int", paramType = "query",required=true)}) |
|
|
|
// public ResultData list(@ModelAttribute WxTags wxTags,Integer pageNum, Integer pageSize) { |
|
|
|
// if (null == wxTags) wxTags = new WxTags(); |
|
|
|
// final PageInfo<WxTags> page = wxTagsService.listAsPage(wxTags, pageNum, pageSize); |
|
|
|
// return new ResultData(page); |
|
|
|
// } |
|
|
|
// |
|
|
|
// @ApiOperation("新增接口") |
|
|
|
// @PostMapping("add") |
|
|
|
// public ResultData add(@RequestBody WxTags wxTags) { |
|
|
|
// //Assert.notNull(wxTags.getName(), "角色名不能为空"); |
|
|
|
// //Assert.isTrue(!checkUnique(sysRole.getName(), null), "重复的角色名"); |
|
|
|
// wxTagsService.saveOrUpdate(wxTags); |
|
|
|
// return new ResultData(); |
|
|
|
// } |
|
|
|
// |
|
|
|
// @ApiOperation("根据id更新接口") |
|
|
|
// @PostMapping("update") |
|
|
|
// public ResultData update(@RequestBody WxTags wxTags) { |
|
|
|
// wxTagsService.saveOrUpdate(wxTags); |
|
|
|
// return new ResultData(); |
|
|
|
// } |
|
|
|
// |
|
|
|
// @ApiOperation("根据id删除接口") |
|
|
|
// @GetMapping("/del") |
|
|
|
// @ApiImplicitParam(name="id",value="id",dataType="Long", paramType = "query",required=true) |
|
|
|
// public ResultData delete(Long id) { |
|
|
|
// wxTagsService.deleteById(id); |
|
|
|
// return new ResultData(Result.SUCCESS, "删除成功", null); |
|
|
|
// } |
|
|
|
// |
|
|
|
// @ApiOperation("根据id查询接口") |
|
|
|
// @GetMapping("/findById") |
|
|
|
// @ApiImplicitParam(name="id",value="id",dataType="Long", paramType = "query",required=true) |
|
|
|
// public ResultData findById(Long id) { |
|
|
|
// return new ResultData(Result.SUCCESS,"查询成功",wxTagsService.getById(id)); |
|
|
|
// } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|