Blame view

src/main/resources/templates/vm/java/Service.java.vm 1.3 KB
mahuandong authored
1
package ${packageName}.service;
tangying authored
2
mahuandong authored
3
import ${packageName}.domain.${ClassName};
tangying authored
4
5
6
import java.util.List;

/**
mahuandong authored
7
 * ${functionName} 服务层
tangying authored
8
9
10
11
 * 
 * @author ${author}
 * @date ${datetime}
 */
mahuandong authored
12
public interface I${ClassName}Service  extends IService<${ClassName}> {
tangying authored
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

}
##	/**
##     * 查询${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);