| | |
| | | import com.xzx.gc.user.service.*; |
| | | import com.xzx.gc.util.DoubleUtil; |
| | | import com.xzx.gc.util.SessionUtil; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | @ApiImplicitParam(paramType="query", name = "userType", value = "用户类型(1为普通用户,2为回收员,3为代丢员,4入库员,5运营员)", required = true, dataType = "String"), |
| | | @ApiImplicitParam(paramType="query", name = "mobilePhone", value = "手机号", required = true, dataType = "String") |
| | | }) |
| | | // @ApiResponses({@ApiResponse( code = 200, message = "success", response = UserModel.class)}) |
| | | public JsonResult<Map<String, Object>> queryUserApiList(@RequestBody UserModel userModel){ |
| | | Map<String, Object> map = userService.queryCuserForTimeList(userModel); |
| | | return JsonResult.success(map); |