wl
2022-11-15 84e920b9f7a80b05c2f9197ab9e64f1fba86a491
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
 
/**
 * <p>
 * 文书模板表 前端控制器
 * </p>
 *
 * @author lyq
 * @since 2022-11-14
 */
@RestController
@RequestMapping("/writ_template")
@Api(tags = "文书模板管理")
public class WritTemplateController extends BaseController {
 
 
}