Commit e11fbdcd1031cbff27eca9200f80c8620216ad8c
1 parent
ebc03a8433
Exists in
master
and in
1 other branch
增加字段
Showing 1 changed file with 10 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AccessPermissionAddRequest.java
View file @
e11fbdc
... | ... | @@ -7,6 +7,7 @@ |
7 | 7 | import org.hibernate.validator.constraints.NotEmpty; |
8 | 8 | |
9 | 9 | import javax.validation.constraints.Pattern; |
10 | +import java.util.List; | |
10 | 11 | |
11 | 12 | /** |
12 | 13 | * Created by Administrator on 2016/3/29 0029. |
13 | 14 | |
... | ... | @@ -24,7 +25,16 @@ |
24 | 25 | //用户id/角色id |
25 | 26 | @FormParam("userid") |
26 | 27 | private String userId; |
28 | + @FormParam | |
29 | + private List deptId; | |
27 | 30 | |
31 | + public List getDeptId() { | |
32 | + return deptId; | |
33 | + } | |
34 | + | |
35 | + public void setDeptId(List deptId) { | |
36 | + this.deptId = deptId; | |
37 | + } | |
28 | 38 | |
29 | 39 | public String getBizId() { |
30 | 40 | return bizId; |