19 lines
352 B
Java
19 lines
352 B
Java
package com.mini.mybigscreen.biz.controller;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* <p>
|
|
* 便签管理表 前端控制器
|
|
* </p>
|
|
*
|
|
* @author gaoxq
|
|
* @since 2026-03-08
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/biz/notes")
|
|
public class NotesController {
|
|
|
|
}
|