|
@@ -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.导出
|