package com.ycl.controller.writ; import com.ycl.base.BaseController; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 文书模板表 前端控制器 *
* * @author lyq * @since 2022-11-14 */ @RestController @RequestMapping("/writ_template") @Api(tags = "文书模板管理") public class WritTemplateController extends BaseController { }