|
@@ -19,6 +19,7 @@ import com.gree.mall.manager.logic.user.UserLogic;
|
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
|
import com.gree.mall.manager.utils.CommonUtils;
|
|
|
import com.gree.mall.manager.utils.excel.ExcelUtils;
|
|
|
+import com.gree.mall.manager.zfire.bean.WorkerParamBean;
|
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
|
import io.swagger.annotations.Api;
|
|
@@ -75,7 +76,7 @@ public class MemberController {
|
|
|
@PostMapping("/list/page2")
|
|
|
@ApiOperation(value = "师傅列表-v2")
|
|
|
public ResponseHelper<Page<UserVO>> page1(
|
|
|
- @RequestBody ZfireParamBean zfireParamBean
|
|
|
+ @RequestBody WorkerParamBean zfireParamBean
|
|
|
) throws RemoteServiceException {
|
|
|
IPage<UserVO> page = userLogic.page2(zfireParamBean);
|
|
|
return ResponseHelper.success(page, new TypeReference<UserVO>() {
|
|
@@ -85,7 +86,7 @@ public class MemberController {
|
|
|
@PostMapping("/list/page2/export")
|
|
|
@ApiOperation(value = "师傅列表-导出-v2")
|
|
|
public void page1Export(
|
|
|
- @RequestBody ZfireParamBean zfireParamBean,
|
|
|
+ @RequestBody WorkerParamBean zfireParamBean,
|
|
|
HttpServletRequest request,
|
|
|
HttpServletResponse response
|
|
|
) throws Exception {
|