懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package ${apiPackage};
 
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import cn.stylefeng.roses.kernel.model.page.PageResult;
import ${package.EntitySpecParams}.${entity}Param;
import ${package.EntitySpecResult}.${entity}Result;
 
import java.util.List;
 
<% var lowerEntity = tool.lowerFirst(entity); %>
<% var lowerEntityService = lowerEntity + 'Service'; %>
 
/**
 * ${tool.cleanWhite(table.comment)}远程接口
 *
 * @author ${author}
 * @Date ${tool.currentTime()}
 */
@RequestMapping("/api/${lowerEntity}")
public interface ${entity}Api {
 
    /**
     * 新增
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/add")
    void add(@RequestBody ${entity}Param param);
 
    /**
     * 删除
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/delete")
    void delete(@RequestBody ${entity}Param param);
 
    /**
     * 更新
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/update")
    void update(@RequestBody ${entity}Param param);
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/findBySpec")
    ${entity}Result findBySpec(@RequestBody ${entity}Param param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/findListBySpec")
    List<${entity}Result> findListBySpec(@RequestBody ${entity}Param param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author ${author}
     * @Date ${date}
     */
    @RequestMapping("/findPageBySpec")
    PageResult<${entity}Result> findPageBySpec(@RequestBody ${entity}Param param);
 
}