|
@@ -1,41 +1,21 @@
|
|
package org.jeecg.modules.ctop.controller;
|
|
package org.jeecg.modules.ctop.controller;
|
|
|
|
|
|
-import java.util.Arrays;
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Map;
|
|
|
|
-import java.io.IOException;
|
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
|
-import java.net.URLDecoder;
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
|
-import org.jeecg.common.api.vo.Result;
|
|
|
|
-import org.jeecg.common.system.query.QueryGenerator;
|
|
|
|
-import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
|
-import org.jeecg.common.util.oConvertUtils;
|
|
|
|
-import cn.com.ctop.com.cn.entity.MaterialImageVideoInfo;
|
|
|
|
-import cn.com.ctop.com.cn.service.IMaterialImageVideoInfoService;
|
|
|
|
-import java.util.Date;
|
|
|
|
|
|
+import cn.com.ctop.common.module.entity.MaterialImageVideoInfo;
|
|
|
|
+import cn.com.ctop.common.module.service.IMaterialImageVideoInfoService;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
+import io.swagger.annotations.Api;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
-
|
|
|
|
-import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
|
-import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
|
-import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
|
|
-import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
|
|
-import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
|
|
-
|
|
|
|
|
|
+import org.jeecg.common.api.vo.Result;
|
|
|
|
+import org.jeecg.common.system.query.QueryGenerator;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
|
-import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
|
|
-import org.springframework.web.servlet.ModelAndView;
|
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
|
-import io.swagger.annotations.Api;
|
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
|
+import java.util.Arrays;
|
|
|
|
+
|
|
|
|
+/**
|
|
* 视频封面关联表信息
|
|
* 视频封面关联表信息
|
|
* @author jeecg-boot
|
|
* @author jeecg-boot
|
|
* @date 2020-12-17
|
|
* @date 2020-12-17
|
|
@@ -57,13 +37,11 @@ public class MaterialImageVideoInfoController {
|
|
* @param req
|
|
* @param req
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-分页列表查询")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-分页列表查询", notes="视频封面关联表信息-分页列表查询")
|
|
|
|
@GetMapping(value = "/list")
|
|
@GetMapping(value = "/list")
|
|
public Result<IPage<MaterialImageVideoInfo>> queryPageList(MaterialImageVideoInfo materialImageVideoInfo,
|
|
public Result<IPage<MaterialImageVideoInfo>> queryPageList(MaterialImageVideoInfo materialImageVideoInfo,
|
|
- @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
|
- @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
|
- HttpServletRequest req) {
|
|
|
|
|
|
+ @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
|
+ @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
|
+ HttpServletRequest req) {
|
|
Result<IPage<MaterialImageVideoInfo>> result = new Result<>();
|
|
Result<IPage<MaterialImageVideoInfo>> result = new Result<>();
|
|
QueryWrapper<MaterialImageVideoInfo> queryWrapper = QueryGenerator.initQueryWrapper(materialImageVideoInfo, req.getParameterMap());
|
|
QueryWrapper<MaterialImageVideoInfo> queryWrapper = QueryGenerator.initQueryWrapper(materialImageVideoInfo, req.getParameterMap());
|
|
Page<MaterialImageVideoInfo> page = new Page<MaterialImageVideoInfo>(pageNo, pageSize);
|
|
Page<MaterialImageVideoInfo> page = new Page<MaterialImageVideoInfo>(pageNo, pageSize);
|
|
@@ -78,8 +56,6 @@ public class MaterialImageVideoInfoController {
|
|
* @param materialImageVideoInfo
|
|
* @param materialImageVideoInfo
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-添加")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-添加", notes="视频封面关联表信息-添加")
|
|
|
|
@PostMapping(value = "/add")
|
|
@PostMapping(value = "/add")
|
|
public Result<MaterialImageVideoInfo> add(@RequestBody MaterialImageVideoInfo materialImageVideoInfo) {
|
|
public Result<MaterialImageVideoInfo> add(@RequestBody MaterialImageVideoInfo materialImageVideoInfo) {
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
@@ -98,8 +74,6 @@ public class MaterialImageVideoInfoController {
|
|
* @param materialImageVideoInfo
|
|
* @param materialImageVideoInfo
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-编辑")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-编辑", notes="视频封面关联表信息-编辑")
|
|
|
|
@PutMapping(value = "/edit")
|
|
@PutMapping(value = "/edit")
|
|
public Result<MaterialImageVideoInfo> edit(@RequestBody MaterialImageVideoInfo materialImageVideoInfo) {
|
|
public Result<MaterialImageVideoInfo> edit(@RequestBody MaterialImageVideoInfo materialImageVideoInfo) {
|
|
Result<MaterialImageVideoInfo> result = new Result<MaterialImageVideoInfo>();
|
|
Result<MaterialImageVideoInfo> result = new Result<MaterialImageVideoInfo>();
|
|
@@ -121,8 +95,6 @@ public class MaterialImageVideoInfoController {
|
|
* @param id
|
|
* @param id
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-通过id删除")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-通过id删除", notes="视频封面关联表信息-通过id删除")
|
|
|
|
@DeleteMapping(value = "/delete")
|
|
@DeleteMapping(value = "/delete")
|
|
public Result<?> delete(@RequestParam(name="id",required=true) String id) {
|
|
public Result<?> delete(@RequestParam(name="id",required=true) String id) {
|
|
try {
|
|
try {
|
|
@@ -139,8 +111,6 @@ public class MaterialImageVideoInfoController {
|
|
* @param ids
|
|
* @param ids
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-批量删除")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-批量删除", notes="视频封面关联表信息-批量删除")
|
|
|
|
@DeleteMapping(value = "/deleteBatch")
|
|
@DeleteMapping(value = "/deleteBatch")
|
|
public Result<MaterialImageVideoInfo> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
public Result<MaterialImageVideoInfo> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
@@ -158,8 +128,6 @@ public class MaterialImageVideoInfoController {
|
|
* @param id
|
|
* @param id
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "视频封面关联表信息-通过id查询")
|
|
|
|
- @ApiOperation(value="视频封面关联表信息-通过id查询", notes="视频封面关联表信息-通过id查询")
|
|
|
|
@GetMapping(value = "/queryById")
|
|
@GetMapping(value = "/queryById")
|
|
public Result<MaterialImageVideoInfo> queryById(@RequestParam(name="id",required=true) String id) {
|
|
public Result<MaterialImageVideoInfo> queryById(@RequestParam(name="id",required=true) String id) {
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
Result<MaterialImageVideoInfo> result = new Result<>();
|
|
@@ -172,72 +140,4 @@ public class MaterialImageVideoInfoController {
|
|
}
|
|
}
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 导出excel
|
|
|
|
- *
|
|
|
|
- * @param request
|
|
|
|
- * @param response
|
|
|
|
- */
|
|
|
|
- @RequestMapping(value = "/exportXls")
|
|
|
|
- public ModelAndView exportXls(HttpServletRequest request, HttpServletResponse response) {
|
|
|
|
- // Step.1 组装查询条件
|
|
|
|
- QueryWrapper<MaterialImageVideoInfo> queryWrapper = null;
|
|
|
|
- try {
|
|
|
|
- String paramsStr = request.getParameter("paramsStr");
|
|
|
|
- if (oConvertUtils.isNotEmpty(paramsStr)) {
|
|
|
|
- String deString = URLDecoder.decode(paramsStr, "UTF-8");
|
|
|
|
- MaterialImageVideoInfo materialImageVideoInfo = JSON.parseObject(deString, MaterialImageVideoInfo.class);
|
|
|
|
- queryWrapper = QueryGenerator.initQueryWrapper(materialImageVideoInfo, request.getParameterMap());
|
|
|
|
- }
|
|
|
|
- } catch (UnsupportedEncodingException e) {
|
|
|
|
- e.printStackTrace();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- //Step.2 AutoPoi 导出Excel
|
|
|
|
- ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
|
|
|
|
- List<MaterialImageVideoInfo> pageList = materialImageVideoInfoService.list(queryWrapper);
|
|
|
|
- //导出文件名称
|
|
|
|
- mv.addObject(NormalExcelConstants.FILE_NAME, "视频封面关联表信息列表");
|
|
|
|
- mv.addObject(NormalExcelConstants.CLASS, MaterialImageVideoInfo.class);
|
|
|
|
- mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("视频封面关联表信息列表数据", "导出人:Jeecg", "导出信息"));
|
|
|
|
- mv.addObject(NormalExcelConstants.DATA_LIST, pageList);
|
|
|
|
- return mv;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 通过excel导入数据
|
|
|
|
- *
|
|
|
|
- * @param request
|
|
|
|
- * @param response
|
|
|
|
- * @return
|
|
|
|
- */
|
|
|
|
- @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
|
- public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
|
- MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
|
|
|
|
- Map<String, MultipartFile> fileMap = multipartRequest.getFileMap();
|
|
|
|
- for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
|
|
|
|
- MultipartFile file = entity.getValue();
|
|
|
|
- ImportParams params = new ImportParams();
|
|
|
|
- params.setTitleRows(2);
|
|
|
|
- params.setHeadRows(1);
|
|
|
|
- params.setNeedSave(true);
|
|
|
|
- try {
|
|
|
|
- List<MaterialImageVideoInfo> listMaterialImageVideoInfos = ExcelImportUtil.importExcel(file.getInputStream(), MaterialImageVideoInfo.class, params);
|
|
|
|
- materialImageVideoInfoService.saveBatch(listMaterialImageVideoInfos);
|
|
|
|
- return Result.ok("文件导入成功!数据行数:" + listMaterialImageVideoInfos.size());
|
|
|
|
- } catch (Exception e) {
|
|
|
|
- log.error(e.getMessage(),e);
|
|
|
|
- return Result.error("文件导入失败:"+e.getMessage());
|
|
|
|
- } finally {
|
|
|
|
- try {
|
|
|
|
- file.getInputStream().close();
|
|
|
|
- } catch (IOException e) {
|
|
|
|
- e.printStackTrace();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- return Result.ok("文件导入失败!");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
}
|
|
}
|