|
@@ -0,0 +1,293 @@
|
|
|
+package org.jeecg.modules.ctop.controller;
|
|
|
+
|
|
|
+import java.io.OutputStream;
|
|
|
+import java.util.*;
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.net.URLDecoder;
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+import cn.com.ctop.common.module.utils.ExportExcelUtils;
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
+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.kuaishou.modules.report.entity.KuaishouAgentAccount;
|
|
|
+import cn.com.ctop.kuaishou.modules.report.service.IKuaishouAgentAccountService;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+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.springframework.beans.factory.annotation.Autowired;
|
|
|
+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;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 快手代理商账户表
|
|
|
+ * @author jeecg-boot
|
|
|
+ * @date 2020-03-03
|
|
|
+ * @version V1.0
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+@Api(tags="快手代理商账户表")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/kuaishou/kuaishouAgentAccount")
|
|
|
+public class KuaishouAgentAccountController {
|
|
|
+ @Autowired
|
|
|
+ private IKuaishouAgentAccountService kuaishouAgentAccountService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页列表查询
|
|
|
+ * @param kuaishouAgentAccount
|
|
|
+ * @param pageNo
|
|
|
+ * @param pageSize
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-分页列表查询")
|
|
|
+ @ApiOperation(value="快手代理商账户表-分页列表查询", notes="快手代理商账户表-分页列表查询")
|
|
|
+ @GetMapping(value = "/list")
|
|
|
+ public Result<IPage<KuaishouAgentAccount>> queryPageList(KuaishouAgentAccount kuaishouAgentAccount,
|
|
|
+ @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
+ @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
+ HttpServletRequest req) {
|
|
|
+ Result<IPage<KuaishouAgentAccount>> result = new Result<IPage<KuaishouAgentAccount>>();
|
|
|
+ QueryWrapper<KuaishouAgentAccount> queryWrapper = QueryGenerator.initQueryWrapper(kuaishouAgentAccount, req.getParameterMap());
|
|
|
+ Page<KuaishouAgentAccount> page = new Page<KuaishouAgentAccount>(pageNo, pageSize);
|
|
|
+ IPage<KuaishouAgentAccount> pageList = kuaishouAgentAccountService.page(page, queryWrapper);
|
|
|
+ result.setSuccess(true);
|
|
|
+ result.setResult(pageList);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加
|
|
|
+ * @param kuaishouAgentAccount
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-添加")
|
|
|
+ @ApiOperation(value="快手代理商账户表-添加", notes="快手代理商账户表-添加")
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ public Result<KuaishouAgentAccount> add(@RequestBody KuaishouAgentAccount kuaishouAgentAccount) {
|
|
|
+ Result<KuaishouAgentAccount> result = new Result<KuaishouAgentAccount>();
|
|
|
+ try {
|
|
|
+ kuaishouAgentAccountService.save(kuaishouAgentAccount);
|
|
|
+ result.success("添加成功!");
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error(e.getMessage(),e);
|
|
|
+ result.error500("操作失败");
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑
|
|
|
+ * @param kuaishouAgentAccount
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-编辑")
|
|
|
+ @ApiOperation(value="快手代理商账户表-编辑", notes="快手代理商账户表-编辑")
|
|
|
+ @PutMapping(value = "/edit")
|
|
|
+ public Result<KuaishouAgentAccount> edit(@RequestBody KuaishouAgentAccount kuaishouAgentAccount) {
|
|
|
+ Result<KuaishouAgentAccount> result = new Result<KuaishouAgentAccount>();
|
|
|
+ KuaishouAgentAccount kuaishouAgentAccountEntity = kuaishouAgentAccountService.getById(kuaishouAgentAccount.getId());
|
|
|
+ if(kuaishouAgentAccountEntity==null) {
|
|
|
+ result.error500("未找到对应实体");
|
|
|
+ }else {
|
|
|
+ boolean ok = kuaishouAgentAccountService.updateById(kuaishouAgentAccount);
|
|
|
+ if(ok) {
|
|
|
+ result.success("修改成功!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过id删除
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-通过id删除")
|
|
|
+ @ApiOperation(value="快手代理商账户表-通过id删除", notes="快手代理商账户表-通过id删除")
|
|
|
+ @DeleteMapping(value = "/delete")
|
|
|
+ public Result<?> delete(@RequestParam(name="id",required=true) String id) {
|
|
|
+ try {
|
|
|
+ kuaishouAgentAccountService.removeById(id);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("删除失败",e.getMessage());
|
|
|
+ return Result.error("删除失败!");
|
|
|
+ }
|
|
|
+ return Result.ok("删除成功!");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量删除
|
|
|
+ * @param ids
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-批量删除")
|
|
|
+ @ApiOperation(value="快手代理商账户表-批量删除", notes="快手代理商账户表-批量删除")
|
|
|
+ @DeleteMapping(value = "/deleteBatch")
|
|
|
+ public Result<KuaishouAgentAccount> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
|
+ Result<KuaishouAgentAccount> result = new Result<KuaishouAgentAccount>();
|
|
|
+ if(ids==null || "".equals(ids.trim())) {
|
|
|
+ result.error500("参数不识别!");
|
|
|
+ }else {
|
|
|
+ this.kuaishouAgentAccountService.removeByIds(Arrays.asList(ids.split(",")));
|
|
|
+ result.success("删除成功!");
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过id查询
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "快手代理商账户表-通过id查询")
|
|
|
+ @ApiOperation(value="快手代理商账户表-通过id查询", notes="快手代理商账户表-通过id查询")
|
|
|
+ @GetMapping(value = "/queryById")
|
|
|
+ public Result<KuaishouAgentAccount> queryById(@RequestParam(name="id",required=true) String id) {
|
|
|
+ Result<KuaishouAgentAccount> result = new Result<KuaishouAgentAccount>();
|
|
|
+ KuaishouAgentAccount kuaishouAgentAccount = kuaishouAgentAccountService.getById(id);
|
|
|
+ if(kuaishouAgentAccount==null) {
|
|
|
+ result.error500("未找到对应实体");
|
|
|
+ }else {
|
|
|
+ result.setResult(kuaishouAgentAccount);
|
|
|
+ result.setSuccess(true);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出excel
|
|
|
+ *
|
|
|
+ * @param request
|
|
|
+ * @param response
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/exportXls")
|
|
|
+ public void exportXls(HttpServletRequest request, HttpServletResponse response) throws Exception{
|
|
|
+ // Step.1 组装查询条件
|
|
|
+ QueryWrapper<KuaishouAgentAccount> queryWrapper = null;
|
|
|
+ try {
|
|
|
+ String paramsStr = request.getParameter("paramsStr");
|
|
|
+ if (oConvertUtils.isNotEmpty(paramsStr)) {
|
|
|
+ String deString = URLDecoder.decode(paramsStr, "UTF-8");
|
|
|
+ KuaishouAgentAccount kuaishouAgentAccount = JSON.parseObject(deString, KuaishouAgentAccount.class);
|
|
|
+ queryWrapper = QueryGenerator.initQueryWrapper(kuaishouAgentAccount, request.getParameterMap());
|
|
|
+ }
|
|
|
+ } catch (UnsupportedEncodingException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ //Step.2 AutoPoi 导出Excel
|
|
|
+ ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
|
|
|
+ List<KuaishouAgentAccount> pageList = kuaishouAgentAccountService.list(queryWrapper);
|
|
|
+ List<List<Object>> result = new ArrayList<>();
|
|
|
+ if(pageList != null && pageList.size() > 0){
|
|
|
+ for (KuaishouAgentAccount kuaishouAgentAccount : pageList){
|
|
|
+ List<Object> rowData = new ArrayList<>();
|
|
|
+ rowData.add(kuaishouAgentAccount.getId());
|
|
|
+ rowData.add(kuaishouAgentAccount.getUserId());
|
|
|
+ rowData.add(kuaishouAgentAccount.getAccountName());
|
|
|
+ rowData.add(kuaishouAgentAccount.getBalance());
|
|
|
+ rowData.add(kuaishouAgentAccount.getCreditBalance());
|
|
|
+ rowData.add(kuaishouAgentAccount.getRebate());
|
|
|
+ rowData.add(kuaishouAgentAccount.getContractRebate());
|
|
|
+ rowData.add(kuaishouAgentAccount.getDirectRebate());
|
|
|
+ rowData.add(kuaishouAgentAccount.getTotalBalance());
|
|
|
+ rowData.add(kuaishouAgentAccount.getCorporationName());
|
|
|
+ if(kuaishouAgentAccount.getReviewStatus() == 1){
|
|
|
+ rowData.add("审核中");
|
|
|
+ }else if(kuaishouAgentAccount.getReviewStatus() == 2){
|
|
|
+ rowData.add("审核通过");
|
|
|
+ }else if(kuaishouAgentAccount.getReviewStatus() == 3){
|
|
|
+ rowData.add("审核拒绝");
|
|
|
+ }
|
|
|
+ result.add(rowData);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ String[] accountHeaders = {"广告主ID", "用户ID", "广告主名称", "现金余额", "信用余额", "返点余额", "框返余额", "激励余额", "总余额", "公司名称", "审核状态"};
|
|
|
+ OutputStream os = response.getOutputStream();
|
|
|
+ ExportExcelUtils eeu = new ExportExcelUtils();
|
|
|
+ XSSFWorkbook workbook = new XSSFWorkbook();
|
|
|
+ eeu.exportExcel(workbook, 0, "账户列表", accountHeaders, result);
|
|
|
+ this.setResponseHeader(response, "快手代理商账户列表.xls");
|
|
|
+ workbook.write(os);
|
|
|
+ os.flush();
|
|
|
+ os.close();
|
|
|
+// //导出文件名称
|
|
|
+// mv.addObject(NormalExcelConstants.FILE_NAME, "快手代理商账户表列表");
|
|
|
+// mv.addObject(NormalExcelConstants.CLASS, KuaishouAgentAccount.class);
|
|
|
+// mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("快手代理商账户表列表数据", "导出人:Jeecg", "导出信息"));
|
|
|
+// mv.addObject(NormalExcelConstants.DATA_LIST, pageList);
|
|
|
+// return mv;
|
|
|
+ }
|
|
|
+ //发送响应流方法
|
|
|
+ public void setResponseHeader(HttpServletResponse response, String fileName) {
|
|
|
+ try {
|
|
|
+ try {
|
|
|
+ fileName = new String(fileName.getBytes(), "ISO8859-1");
|
|
|
+ } catch (UnsupportedEncodingException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ response.setContentType("application/octet-stream;charset=ISO8859-1");
|
|
|
+ response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
|
|
|
+ response.addHeader("Pargam", "no-cache");
|
|
|
+ response.addHeader("Cache-Control", "no-cache");
|
|
|
+ } catch (Exception ex) {
|
|
|
+ ex.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 通过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<KuaishouAgentAccount> listKuaishouAgentAccounts = ExcelImportUtil.importExcel(file.getInputStream(), KuaishouAgentAccount.class, params);
|
|
|
+ kuaishouAgentAccountService.saveBatch(listKuaishouAgentAccounts);
|
|
|
+ return Result.ok("文件导入成功!数据行数:" + listKuaishouAgentAccounts.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("文件导入失败!");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|