Commit 3ce516e9c6b237b918f20bcbb9477c5c6f1a3253

Authored by jiangjiazhi
1 parent f0d8489df5

c

Showing 10 changed files with 0 additions and 997 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Permissions.java View file @ 3ce516e
1   -package com.lyms.platform.pojo;
2   -
3   -import java.util.Date;
4   -
5   -public class Permissions {
6   - private String id;
7   -
8   - private Integer type;
9   -
10   - private String moduleName;
11   -
12   - private String functionName;
13   -
14   - private String moduleCode;
15   -
16   - private String functionCode;
17   -
18   - private String permissionName;
19   -
20   - private String action;
21   -
22   - private String ext;
23   -
24   - private String url;
25   -
26   - private String publishId;
27   -
28   - private String publishName;
29   -
30   - private Integer yn;
31   -
32   - private Date modified;
33   -
34   - private Date created;
35   -
36   - public String getModuleCode() {
37   - return moduleCode;
38   - }
39   -
40   - public void setModuleCode(String moduleCode) {
41   - this.moduleCode = moduleCode;
42   - }
43   -
44   - public String getFunctionCode() {
45   - return functionCode;
46   - }
47   -
48   - public void setFunctionCode(String functionCode) {
49   - this.functionCode = functionCode;
50   - }
51   -
52   - public String getId() {
53   - return id;
54   - }
55   -
56   - public void setId(String id) {
57   - this.id = id;
58   - }
59   -
60   - public Integer getType() {
61   - return type;
62   - }
63   -
64   - public void setType(Integer type) {
65   - this.type = type;
66   -
67   - }
68   -
69   - public String getModuleName() {
70   - return moduleName;
71   - }
72   -
73   - public void setModuleName(String moduleName) {
74   - this.moduleName = moduleName;
75   -
76   - }
77   -
78   - public String getFunctionName() {
79   - return functionName;
80   - }
81   -
82   - public void setFunctionName(String functionName) {
83   - this.functionName = functionName;
84   -
85   - }
86   -
87   - public String getPermissionName() {
88   - return permissionName;
89   - }
90   -
91   - public void setPermissionName(String permissionName) {
92   - this.permissionName = permissionName;
93   -
94   - }
95   -
96   - public String getAction() {
97   - return action;
98   - }
99   -
100   - public void setAction(String action) {
101   - this.action = action;
102   -
103   - }
104   -
105   - public String getExt() {
106   - return ext;
107   - }
108   -
109   - public void setExt(String ext) {
110   - this.ext = ext;
111   -
112   - }
113   -
114   - public String getUrl() {
115   - return url;
116   - }
117   -
118   - public void setUrl(String url) {
119   - this.url = url;
120   -
121   - }
122   -
123   - public String getPublishId() {
124   - return publishId;
125   - }
126   -
127   - public void setPublishId(String publishId) {
128   - this.publishId = publishId;
129   -
130   - }
131   -
132   - public String getPublishName() {
133   - return publishName;
134   - }
135   -
136   - public void setPublishName(String publishName) {
137   - this.publishName = publishName;
138   -
139   - }
140   -
141   - public Integer getYn() {
142   - return yn;
143   - }
144   -
145   - public void setYn(Integer yn) {
146   - this.yn = yn;
147   -
148   - }
149   -
150   - public Date getModified() {
151   - return modified;
152   - }
153   -
154   - public void setModified(Date modified) {
155   - this.modified = modified;
156   -
157   - }
158   -
159   - public Date getCreated() {
160   - return created;
161   - }
162   -
163   - public void setCreated(Date created) {
164   - this.created = created;
165   -
166   - }
167   -}
platform-dal/src/main/java/com/lyms/platform/pojo/RolePermissionMaps.java View file @ 3ce516e
1   -package com.lyms.platform.pojo;
2   -
3   -public class RolePermissionMaps {
4   - private String roleId;
5   -
6   - private String permissionId;
7   -
8   - private Integer yn;
9   -
10   - public String getRoleId() {
11   - return roleId;
12   - }
13   -
14   - public void setRoleId(String roleId) {
15   - this.roleId = roleId;
16   -
17   - }
18   -
19   - public String getPermissionId() {
20   - return permissionId;
21   - }
22   -
23   - public void setPermissionId(String permissionId) {
24   - this.permissionId = permissionId;
25   -
26   - }
27   -
28   - public Integer getYn() {
29   - return yn;
30   - }
31   -
32   - public void setYn(Integer yn) {
33   - this.yn = yn;
34   - }
35   -}
platform-dal/src/main/java/com/lyms/platform/pojo/Roles.java View file @ 3ce516e
1   -package com.lyms.platform.pojo;
2   -
3   -import java.util.Date;
4   -
5   -public class Roles {
6   - private String id;
7   -
8   - private Integer type;
9   -
10   - private String parentId;
11   -
12   - private String title;
13   -
14   - private String publishId;
15   -
16   - private String publishName;
17   -
18   - private Integer yn;
19   -
20   - private Date modified;
21   -
22   - private Date created;
23   -
24   - public String getId() {
25   - return id;
26   - }
27   -
28   - public void setId(String id) {
29   - this.id = id;
30   -
31   - }
32   -
33   - public Integer getType() {
34   - return type;
35   - }
36   -
37   - public void setType(Integer type) {
38   - this.type = type;
39   -
40   - }
41   -
42   - public String getParentId() {
43   - return parentId;
44   - }
45   -
46   - public void setParentId(String parentId) {
47   - this.parentId = parentId;
48   -
49   - }
50   -
51   - public String getTitle() {
52   - return title;
53   - }
54   -
55   - public void setTitle(String title) {
56   - this.title = title;
57   -
58   - }
59   -
60   - public String getPublishId() {
61   - return publishId;
62   - }
63   -
64   - public void setPublishId(String publishId) {
65   - this.publishId = publishId;
66   -
67   - }
68   -
69   - public String getPublishName() {
70   - return publishName;
71   - }
72   -
73   - public void setPublishName(String publishName) {
74   - this.publishName = publishName;
75   -
76   - }
77   -
78   - public Integer getYn() {
79   - return yn;
80   - }
81   -
82   - public void setYn(Integer yn) {
83   - this.yn = yn;
84   -
85   - }
86   -
87   - public Date getModified() {
88   - return modified;
89   - }
90   -
91   - public void setModified(Date modified) {
92   - this.modified = modified;
93   -
94   - }
95   -
96   - public Date getCreated() {
97   - return created;
98   - }
99   -
100   - public void setCreated(Date created) {
101   - this.created = created;
102   -
103   - }
104   -}
platform-dal/src/main/java/com/lyms/platform/pojo/UserRoleMaps.java View file @ 3ce516e
1   -package com.lyms.platform.pojo;
2   -
3   -public class UserRoleMaps {
4   - private String userId;
5   -
6   - private String roleId;
7   -
8   - private Integer yn;
9   -
10   - public String getUserId() {
11   - return userId;
12   - }
13   -
14   - public void setUserId(String userId) {
15   - this.userId = userId;
16   -
17   - }
18   -
19   - public String getRoleId() {
20   - return roleId;
21   - }
22   -
23   - public void setRoleId(String roleId) {
24   - this.roleId = roleId;
25   - }
26   -
27   - public Integer getYn() {
28   - return yn;
29   - }
30   -
31   - public void setYn(Integer yn) {
32   - this.yn = yn;
33   - }
34   -}
platform-dal/src/main/java/com/lyms/platform/pojo/Users.java View file @ 3ce516e
1   -package com.lyms.platform.pojo;
2   -
3   -import java.util.Date;
4   -
5   -public class Users {
6   - private String id;
7   -
8   - private Integer type;
9   -
10   - private String parentId;
11   -
12   - private Integer deptId;
13   -
14   - private String username;
15   -
16   - private String account;
17   -
18   - private String pwd;//
19   -
20   - private String phone;
21   -
22   - private String publishId;
23   -
24   - private String publishName;
25   -
26   - private Integer yn;
27   -
28   - private Date modified;
29   -
30   - private Date created;
31   -
32   - private Date lastLoginTime;
33   -
34   - public Date getLastLoginTime() {
35   - return lastLoginTime;
36   - }
37   -
38   - public void setLastLoginTime(Date lastLoginTime) {
39   - this.lastLoginTime = lastLoginTime;
40   - }
41   -
42   - public String getId() {
43   - return id;
44   - }
45   -
46   - public void setId(String id) {
47   - this.id = id;
48   -
49   - }
50   -
51   - public Integer getType() {
52   - return type;
53   - }
54   -
55   - public void setType(Integer type) {
56   - this.type = type;
57   -
58   - }
59   -
60   - public String getParentId() {
61   - return parentId;
62   - }
63   -
64   - public void setParentId(String parentId) {
65   - this.parentId = parentId;
66   -
67   - }
68   -
69   - public Integer getDeptId() {
70   - return deptId;
71   - }
72   -
73   - public void setDeptId(Integer deptId) {
74   - this.deptId = deptId;
75   -
76   - }
77   -
78   - public String getUsername() {
79   - return username;
80   - }
81   -
82   - public void setUsername(String username) {
83   - this.username = username;
84   -
85   - }
86   -
87   - public String getAccount() {
88   - return account;
89   - }
90   -
91   - public void setAccount(String account) {
92   - this.account = account;
93   -
94   - }
95   -
96   - public String getPwd() {
97   - return pwd;
98   - }
99   -
100   - public void setPwd(String pwd) {
101   - this.pwd = pwd;
102   -
103   - }
104   -
105   - public String getPhone() {
106   - return phone;
107   - }
108   -
109   - public void setPhone(String phone) {
110   - this.phone = phone;
111   -
112   - }
113   -
114   - public String getPublishId() {
115   - return publishId;
116   - }
117   -
118   - public void setPublishId(String publishId) {
119   - this.publishId = publishId;
120   -
121   - }
122   -
123   - public String getPublishName() {
124   - return publishName;
125   - }
126   -
127   - public void setPublishName(String publishName) {
128   - this.publishName = publishName;
129   -
130   - }
131   -
132   - public Integer getYn() {
133   - return yn;
134   - }
135   -
136   - public void setYn(Integer yn) {
137   - this.yn = yn;
138   -
139   - }
140   -
141   - public Date getModified() {
142   - return modified;
143   - }
144   -
145   - public void setModified(Date modified) {
146   - this.modified = modified;
147   -
148   - }
149   -
150   - public Date getCreated() {
151   - return created;
152   - }
153   -
154   - public void setCreated(Date created) {
155   - this.created = created;
156   -
157   - }
158   -}
platform-dal/src/main/java/com/lyms/platform/query/PermissionsQuery.java View file @ 3ce516e
1   -package com.lyms.platform.query;
2   -
3   -import java.util.Date;
4   -
5   -import com.lyms.platform.common.dao.BaseQuery;
6   -
7   -public class PermissionsQuery extends BaseQuery {
8   - private Integer id;
9   -
10   - private Integer type;
11   -
12   - private String moduleName;
13   -
14   - private String functionName;
15   -
16   - private String permissionName;
17   -
18   - private String action;
19   -
20   - private String ext;
21   -
22   - private String url;
23   -
24   - private Integer publishId;
25   -
26   - private String publishName;
27   -
28   - private Integer yn;
29   -
30   - private Date modified;
31   -
32   - private Date created;
33   -
34   - private String moduleCode;
35   -
36   - private String functionCode;
37   -
38   - public String getModuleCode() {
39   - return moduleCode;
40   - }
41   -
42   - public void setModuleCode(String moduleCode) {
43   - this.moduleCode = moduleCode;
44   - }
45   -
46   - public String getFunctionCode() {
47   - return functionCode;
48   - }
49   -
50   - public void setFunctionCode(String functionCode) {
51   - this.functionCode = functionCode;
52   - }
53   -
54   - public Integer getId() {
55   - return id;
56   - }
57   -
58   - public void setId(Integer id) {
59   - this.id = id;
60   -
61   - }
62   -
63   - public Integer getType() {
64   - return type;
65   - }
66   -
67   - public void setType(Integer type) {
68   - this.type = type;
69   -
70   - }
71   -
72   - public String getModuleName() {
73   - return moduleName;
74   - }
75   -
76   - public void setModuleName(String moduleName) {
77   - this.moduleName = moduleName;
78   -
79   - }
80   -
81   - public String getFunctionName() {
82   - return functionName;
83   - }
84   -
85   - public void setFunctionName(String functionName) {
86   - this.functionName = functionName;
87   -
88   - }
89   -
90   - public String getPermissionName() {
91   - return permissionName;
92   - }
93   -
94   - public void setPermissionName(String permissionName) {
95   - this.permissionName = permissionName;
96   -
97   - }
98   -
99   - public String getAction() {
100   - return action;
101   - }
102   -
103   - public void setAction(String action) {
104   - this.action = action;
105   -
106   - }
107   -
108   - public String getExt() {
109   - return ext;
110   - }
111   -
112   - public void setExt(String ext) {
113   - this.ext = ext;
114   -
115   - }
116   -
117   - public String getUrl() {
118   - return url;
119   - }
120   -
121   - public void setUrl(String url) {
122   - this.url = url;
123   -
124   - }
125   -
126   - public Integer getPublishId() {
127   - return publishId;
128   - }
129   -
130   - public void setPublishId(Integer publishId) {
131   - this.publishId = publishId;
132   -
133   - }
134   -
135   - public String getPublishName() {
136   - return publishName;
137   - }
138   -
139   - public void setPublishName(String publishName) {
140   - this.publishName = publishName;
141   -
142   - }
143   -
144   - public Integer getYn() {
145   - return yn;
146   - }
147   -
148   - public void setYn(Integer yn) {
149   - this.yn = yn;
150   -
151   - }
152   -
153   - public Date getModified() {
154   - return modified;
155   - }
156   -
157   - public void setModified(Date modified) {
158   - this.modified = modified;
159   -
160   - }
161   -
162   - public Date getCreated() {
163   - return created;
164   - }
165   -
166   - public void setCreated(Date created) {
167   - this.created = created;
168   -
169   - }
170   -}
platform-dal/src/main/java/com/lyms/platform/query/RolePermissionMapsQuery.java View file @ 3ce516e
1   -package com.lyms.platform.query;
2   -
3   -import com.lyms.platform.common.dao.BaseQuery;
4   -
5   -public class RolePermissionMapsQuery extends BaseQuery {
6   - private String roleId;
7   -
8   - private String permissionId;
9   -
10   - private Integer yn;
11   -
12   - public String getRoleId() {
13   - return roleId;
14   - }
15   -
16   - public void setRoleId(String roleId) {
17   - this.roleId = roleId;
18   -
19   - }
20   -
21   - public String getPermissionId() {
22   - return permissionId;
23   - }
24   -
25   - public void setPermissionId(String permissionId) {
26   - this.permissionId = permissionId;
27   -
28   - }
29   -
30   - public Integer getYn() {
31   - return yn;
32   - }
33   -
34   - public void setYn(Integer yn) {
35   - this.yn = yn;
36   -
37   - }
38   -}
platform-dal/src/main/java/com/lyms/platform/query/RolesQuery.java View file @ 3ce516e
1   -package com.lyms.platform.query;
2   -
3   -import java.util.Date;
4   -
5   -import com.lyms.platform.common.dao.BaseQuery;
6   -
7   -public class RolesQuery extends BaseQuery {
8   -
9   - private String id;
10   -
11   - private Integer type;
12   -
13   - private String parentId;
14   -
15   - private String title;
16   -
17   - private String publishId;
18   -
19   - private String publishName;
20   -
21   - private Integer yn;
22   -
23   - private Date modified;
24   -
25   - private Date created;
26   -
27   - public String getId() {
28   - return id;
29   - }
30   -
31   - public void setId(String id) {
32   - this.id = id;
33   - }
34   -
35   - public String getParentId() {
36   - return parentId;
37   - }
38   -
39   - public void setParentId(String parentId) {
40   - this.parentId = parentId;
41   - }
42   -
43   - public String getPublishId() {
44   - return publishId;
45   - }
46   -
47   - public void setPublishId(String publishId) {
48   - this.publishId = publishId;
49   - }
50   -
51   - public Integer getType() {
52   - return type;
53   - }
54   -
55   - public void setType(Integer type) {
56   - this.type = type;
57   -
58   - }
59   -
60   - public String getTitle() {
61   - return title;
62   - }
63   -
64   - public void setTitle(String title) {
65   - this.title = title;
66   -
67   - }
68   -
69   - public String getPublishName() {
70   - return publishName;
71   - }
72   -
73   - public void setPublishName(String publishName) {
74   - this.publishName = publishName;
75   -
76   - }
77   -
78   - public Integer getYn() {
79   - return yn;
80   - }
81   -
82   - public void setYn(Integer yn) {
83   - this.yn = yn;
84   -
85   - }
86   -
87   - public Date getModified() {
88   - return modified;
89   - }
90   -
91   - public void setModified(Date modified) {
92   - this.modified = modified;
93   -
94   - }
95   -
96   - public Date getCreated() {
97   - return created;
98   - }
99   -
100   - public void setCreated(Date created) {
101   - this.created = created;
102   -
103   - }
104   -}
platform-dal/src/main/java/com/lyms/platform/query/UserRoleMapsQuery.java View file @ 3ce516e
1   -package com.lyms.platform.query;
2   -
3   -import com.lyms.platform.common.dao.BaseQuery;
4   -
5   -public class UserRoleMapsQuery extends BaseQuery {
6   - private String userId;
7   -
8   - private String roleId;
9   -
10   - private Integer yn;
11   -
12   - public String getUserId() {
13   - return userId;
14   - }
15   -
16   - public void setUserId(String userId) {
17   - this.userId = userId;
18   -
19   - }
20   -
21   - public String getRoleId() {
22   - return roleId;
23   - }
24   -
25   - public void setRoleId(String roleId) {
26   - this.roleId = roleId;
27   -
28   - }
29   -
30   - public Integer getYn() {
31   - return yn;
32   - }
33   -
34   - public void setYn(Integer yn) {
35   - this.yn = yn;
36   -
37   - }
38   -}
platform-dal/src/main/java/com/lyms/platform/query/UsersQuery.java View file @ 3ce516e
1   -package com.lyms.platform.query;
2   -
3   -import java.util.Date;
4   -
5   -import com.lyms.platform.common.dao.BaseQuery;
6   -
7   -public class UsersQuery extends BaseQuery {
8   - private String id;
9   -
10   - private Integer type;
11   -
12   - private Integer parentId;
13   -
14   - private Integer deptId;
15   -
16   - private String username;
17   -
18   - private String account;
19   -
20   - private String pwd;
21   -
22   - private String phone;
23   -
24   - private Integer publishId;
25   -
26   - private String publishName;
27   -
28   - private Integer yn;
29   -
30   - private Date modified;
31   -
32   - private Date created;
33   -
34   - public String getId() {
35   - return id;
36   - }
37   -
38   - public void setId(String id) {
39   - this.id = id;
40   - }
41   -
42   - public Integer getType() {
43   - return type;
44   - }
45   -
46   - public void setType(Integer type) {
47   - this.type = type;
48   -
49   - }
50   -
51   - public Integer getParentId() {
52   - return parentId;
53   - }
54   -
55   - public void setParentId(Integer parentId) {
56   - this.parentId = parentId;
57   -
58   - }
59   -
60   - public Integer getDeptId() {
61   - return deptId;
62   - }
63   -
64   - public void setDeptId(Integer deptId) {
65   - this.deptId = deptId;
66   -
67   - }
68   -
69   - public String getUsername() {
70   - return username;
71   - }
72   -
73   - public void setUsername(String username) {
74   - this.username = username;
75   -
76   - }
77   -
78   - public String getAccount() {
79   - return account;
80   - }
81   -
82   - public void setAccount(String account) {
83   - this.account = account;
84   -
85   - }
86   -
87   - public String getPwd() {
88   - return pwd;
89   - }
90   -
91   - public void setPwd(String pwd) {
92   - this.pwd = pwd;
93   -
94   - }
95   -
96   - public String getPhone() {
97   - return phone;
98   - }
99   -
100   - public void setPhone(String phone) {
101   - this.phone = phone;
102   -
103   - }
104   -
105   - public Integer getPublishId() {
106   - return publishId;
107   - }
108   -
109   - public void setPublishId(Integer publishId) {
110   - this.publishId = publishId;
111   -
112   - }
113   -
114   - public String getPublishName() {
115   - return publishName;
116   - }
117   -
118   - public void setPublishName(String publishName) {
119   - this.publishName = publishName;
120   -
121   - }
122   -
123   - public Integer getYn() {
124   - return yn;
125   - }
126   -
127   - public void setYn(Integer yn) {
128   - this.yn = yn;
129   -
130   - }
131   -
132   - public Date getModified() {
133   - return modified;
134   - }
135   -
136   - public void setModified(Date modified) {
137   - this.modified = modified;
138   -
139   - }
140   -
141   - public Date getCreated() {
142   - return created;
143   - }
144   -
145   - public void setCreated(Date created) {
146   - this.created = created;
147   -
148   - }
149   -}