| | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.doumee.api.BaseController; |
| | | import com.doumee.config.annotation.LoginNoRequired; |
| | | import com.doumee.core.annotation.excel.ExcelExporter; |
| | | import com.doumee.core.annotation.pr.PreventRepeat; |
| | | import com.doumee.core.model.ApiResponse; |
| | |
| | | */ |
| | | @Api(tags = "会议室预定信息表") |
| | | @RestController |
| | | @RequestMapping("/cloud/bookings") |
| | | @RequestMapping("/cloudService/bookings") |
| | | public class CloudBookingsController extends BaseController { |
| | | |
| | | @Autowired |
| | |
| | | public ApiResponse test() { |
| | | return ApiResponse.success("会议室测试成功"); |
| | | } |
| | | |
| | | @LoginNoRequired |
| | | @ApiOperation("测试网管") |
| | | @GetMapping("/testNoLogin") |
| | | public ApiResponse testNoLogin() { |
| | | return ApiResponse.success("会议室管理测试无需登录成功"); |
| | | } |
| | | @PreventRepeat |
| | | @ApiOperation("新建") |
| | | @PostMapping("/create") |