Browse Source

no message

FengChaoYu 3 weeks ago
parent
commit
1c9c7feddb

+ 1 - 4
src/main/java/com/gree/mall/manager/controller/admin/AdminDeptController.java

@@ -12,7 +12,6 @@ import com.gree.mall.manager.logic.admin.AdminDeptLogic;
 import com.gree.mall.manager.plus.entity.AdminDept;
 import com.gree.mall.manager.utils.excel.ExcelUtils;
 import com.gree.mall.manager.zfire.bean.DeptZfireParamBean;
-import com.gree.mall.manager.zfire.bean.ZfireParamBean;
 import com.gree.mall.manager.zfire.util.FieldUtils;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
@@ -66,12 +65,10 @@ public class AdminDeptController {
     @PostMapping("/list/export")
     @ApiOperation(value = "部门列表导出")
     public void listExport(
-            @RequestBody ZfireParamBean zfireParamBean,
+            @RequestBody DeptZfireParamBean zfireParam,
             HttpServletRequest request,
             HttpServletResponse response
     ) throws Exception {
-        //1.组装查询条件
-        ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean);
         //2.查询要导出的内容
         IPage<AdminDeptWebsitVO> adminDeptVOIPage = adminDeptLogic.list(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam);
         //3.导出

+ 1 - 1
src/main/java/com/gree/mall/manager/zfire/bean/ZfireParamBean.java

@@ -24,7 +24,7 @@ public class ZfireParamBean {
     private String orderBy = "";
 
     @ApiModelProperty(value = "查询条件")
-    private List<com.gree.mall.manager.zfire.bean.QueryParamBean> params;
+    private List<QueryParamBean> params;
 
     @ApiModelProperty(value = "导出的字段,导出必传")
     private List<AdminField> exportFields;