|  |  | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
 |  |  | import com.doumee.api.BaseController; | 
 |  |  | import com.doumee.core.model.ApiResponse; | 
 |  |  | import com.doumee.core.model.LoginUserInfo; | 
 |  |  | import com.doumee.core.model.PageWrap; | 
 |  |  | import com.doumee.service.business.third.model.ApiResponse; | 
 |  |  | import com.doumee.service.business.third.model.LoginUserInfo; | 
 |  |  | import com.doumee.service.business.third.model.PageWrap; | 
 |  |  | import com.doumee.core.utils.Constants; | 
 |  |  | import com.doumee.core.utils.DateUtil; | 
 |  |  | import com.doumee.core.utils.QrCodeUtils; | 
 |  |  | 
 |  |  | import com.doumee.dao.web.response.MeetingDetailResponse; | 
 |  |  | import com.doumee.dao.web.response.MeetingListResponse; | 
 |  |  | import com.doumee.dao.web.response.MonthDataResponse; | 
 |  |  | import com.doumee.dao.web.response.RoomDetailResponse; | 
 |  |  | import com.doumee.service.business.BookingsService; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | import io.swagger.annotations.ApiImplicitParam; | 
 |  |  | 
 |  |  |     @ApiOperation(value = "当月会议表", notes = "当月会议表") | 
 |  |  |     @GetMapping("/monthMeeting") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "yearMonth", value = "年月  yyyy-MM", required = true) | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "yearMonth", value = "年月  yyyy-MM", required = true), | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "String", name = "queryType", value = "查询类别:1=我参与的;2=我预约的;3管理员查看全部 ", required = true) | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<List<MonthDataResponse>> monthDay(@RequestParam String yearMonth, @RequestHeader(Constants.HEADER_USER_TOKEN) String token) { | 
 |  |  |     public ApiResponse<List<MonthDataResponse>> monthDay(@RequestParam String yearMonth | 
 |  |  |             ,@RequestParam(required = false) Integer queryType | 
 |  |  |             ,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { | 
 |  |  |         LoginUserInfo user = (LoginUserInfo) SecurityUtils.getSubject().getPrincipal(); | 
 |  |  |         List<String> dataList = DateUtil.getDayByMonth(yearMonth); | 
 |  |  |         List<MonthDataResponse> monthDataResponseList = new ArrayList<>(); | 
 |  |  |         List<Bookings> bookings = bookingsService.getMyBookings(user.getId(),yearMonth); | 
 |  |  |         List<Bookings> bookings = bookingsService.getMyBookings(user.getId(),yearMonth,queryType); | 
 |  |  |         for (String str:dataList) { | 
 |  |  |             MonthDataResponse  monthDataResponse = new MonthDataResponse(); | 
 |  |  |             monthDataResponse.setWeekMsg(DateUtil.getWeek(DateUtil.StringToDate(str,"yyyy-MM-dd")).getChineseName()); | 
 |  |  | 
 |  |  |             @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "id", value = "会议主键", required = true), | 
 |  |  |     }) | 
 |  |  |     public ApiResponse<MeetingDetailResponse> meetingDetail( @RequestHeader(Constants.HEADER_USER_TOKEN) String token,@RequestParam Integer id) { | 
 |  |  |         return ApiResponse.success("查询成功", bookingsService.getMeetingDetail(id)); | 
 |  |  |         return ApiResponse.success("查询成功", bookingsService.getMeetingDetail(id,getLoginUser(token).getId())); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("获取会议开门二维码") | 
 |  |  | 
 |  |  |     public ApiResponse reservationCancel(@RequestBody BusinessOverDTO businessOverDTO, @RequestHeader(Constants.HEADER_USER_TOKEN) String token) { | 
 |  |  |         LoginUserInfo user = getLoginUser(token); | 
 |  |  |         businessOverDTO.setUserId(user.getId()); | 
 |  |  |         businessOverDTO.setLoginUser(user); | 
 |  |  |         bookingsService.reservationCancel(businessOverDTO); | 
 |  |  |         return ApiResponse.success("操作成功"); | 
 |  |  |     } |