Blame view

src/main/resources/templates/vm/java/Service.java.vm 1.29 KB
tangying authored
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
package ${package}.service;

import ${package}.domain.${className};
import java.util.List;

/**
 * ${tableComment} 服务层
 * 
 * @author ${author}
 * @date ${datetime}
 */
public interface I${className}Service  extends AutoService<${className}> {

}
##	/**
##     * 查询${tableComment}信息
##     *
##     * @param ${primaryKey.attrname} ${tableComment}ID
##     * @return ${tableComment}信息
##     */
##	public ${className} select${className}ById(${primaryKey.attrType} ${primaryKey.attrname});
##
##	/**
##     * 查询${tableComment}列表
##     *
##     * @param ${classname} ${tableComment}信息
##     * @return ${tableComment}集合
##     */
##	public List<${className}> select${className}List(${className} ${classname});
##
##	/**
##     * 新增${tableComment}
##     *
##     * @param ${classname} ${tableComment}信息
##     * @return 结果
##     */
##	public int insert${className}(${className} ${classname});
##
##	/**
##     * 修改${tableComment}
##     *
##     * @param ${classname} ${tableComment}信息
##     * @return 结果
##     */
##	public int update${className}(${className} ${classname});
##
##	/**
##     * 删除${tableComment}信息
##     *
##     * @param ids 需要删除的数据ID
##     * @return 结果
##     */
##	public int delete${className}ByIds(String ids);