ServiceDictController.java
430 Bytes
package com.subsidy.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import io.swagger.annotations.Api;
/**
* <p>
* 业务管理字典表 前端控制器
* </p>
*
* @author Tuyp
* @since 2024-07-30
*/
@RestController
@Api(tags = "业务管理字典表")
@RequestMapping("/service-dict-do")
public class ServiceDictController {
}