PermissionUpdateImport.java
912 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
package com.xiniunet.railway.domain;
import com.xiniunet.framework.base.BaseDomain;
import com.xiniunet.framework.util.excel.annotation.Name;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotNull;
/**
* Created by cjl on 2018/5/22.
*/
@Name("用户权限批量更新")
public class PermissionUpdateImport extends BaseDomain{
@NotNull
@Name("用户手机号")
@Length(
max = 20
)
private String account;
@NotNull
@Name("权限名称")
@Length(
max = 50
)
private String name;
public PermissionUpdateImport() {
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}