19 lines
364 B
Java
19 lines
364 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-02-24
|
||
|
|
*/
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/biz/itemInfo")
|
||
|
|
public class ItemInfoController {
|
||
|
|
|
||
|
|
}
|