package com.ydtech.modules.admin.controller; import com.ydtech.core.page.HttpResult; import com.ydtech.modules.admin.model.dto.SysUserTeamDto; import com.ydtech.modules.admin.model.vo.AppCustomerManagementQueryVo; import com.ydtech.modules.admin.service.AppCustomerManagementService; import com.ydtech.modules.order.entity.BasePageResult; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Api(tags = "app客户管理功能") @RestController @RequestMapping("/app/customer") @RequiredArgsConstructor public class AppCustomerManagementController { private final AppCustomerManagementService appCustomerManagementService; @ApiOperation(value = "认证查询") @PostMapping(value = "/authenticationQuery") public HttpResult> authenticationQuery(@RequestBody AppCustomerManagementQueryVo appCustomerManagementQueryVo) { return appCustomerManagementService.authenticationQuery(appCustomerManagementQueryVo); } }