123456789101112131415161718192021222324 |
- package com.szwl.controller;
- import io.swagger.annotations.Api;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 闹钟列表详情 前端控制器
- * </p>
- *
- * @author wuhs
- * @since 2022-06-02
- */
- @Api(value = "/tAlarmClock", tags = {"闹钟详情"})
- @RestController
- @RequestMapping("/tAlarmClockItem")
- public class TAlarmClockItemController {
- }
|