Code Review
/
portal
/
sdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9359561de353450d66d30a437d121e9c1380874b
[portal/sdk.git]
/
1
export class RoleFunction {
2
public name:string;
3
public code:string;
4
public type:string;
5
public action:string;
6
7
constructor(roleFun:any){
8
this.name= roleFun.name;
9
this.code = roleFun.code;
10
this.type = roleFun.type;
11
this.action = roleFun.action;
12
}
13
}