OperateGroup.java
893 Bytes
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 com.canrd.webmagic.common.jsr303;
public class OperateGroup {
/**
* 新增校验
*/
public interface Save {
}
/**
* 删除校验
*/
public interface Delete {
}
/**
* 修改校验
*/
public interface Update {
}
/**
* 查询列表
*/
public interface List {
}
/**
* 分页查询
*/
public interface Page {
}
/**
* 长度校验
*/
public interface Length {
}
/**
* 格式校验
*/
public interface Format {
}
/**
* 详情
*/
public interface Detail {
}
/**
* 单条
*/
public interface One {
}
public interface Trace {
}
/**
* 批量查询
*/
public interface BatchQuery {
}
/**
* 导出
*/
public interface Export {
}
}