diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/Permissions.java b/platform-dal/src/main/java/com/lyms/platform/pojo/Permissions.java deleted file mode 100644 index 1f2343e..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/Permissions.java +++ /dev/null @@ -1,167 +0,0 @@ -package com.lyms.platform.pojo; - -import java.util.Date; - -public class Permissions { - private String id; - - private Integer type; - - private String moduleName; - - private String functionName; - - private String moduleCode; - - private String functionCode; - - private String permissionName; - - private String action; - - private String ext; - - private String url; - - private String publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - public String getModuleCode() { - return moduleCode; - } - - public void setModuleCode(String moduleCode) { - this.moduleCode = moduleCode; - } - - public String getFunctionCode() { - return functionCode; - } - - public void setFunctionCode(String functionCode) { - this.functionCode = functionCode; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public String getModuleName() { - return moduleName; - } - - public void setModuleName(String moduleName) { - this.moduleName = moduleName; - - } - - public String getFunctionName() { - return functionName; - } - - public void setFunctionName(String functionName) { - this.functionName = functionName; - - } - - public String getPermissionName() { - return permissionName; - } - - public void setPermissionName(String permissionName) { - this.permissionName = permissionName; - - } - - public String getAction() { - return action; - } - - public void setAction(String action) { - this.action = action; - - } - - public String getExt() { - return ext; - } - - public void setExt(String ext) { - this.ext = ext; - - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - - } - - public String getPublishId() { - return publishId; - } - - public void setPublishId(String publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/RolePermissionMaps.java b/platform-dal/src/main/java/com/lyms/platform/pojo/RolePermissionMaps.java deleted file mode 100644 index 1a79ef7..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/RolePermissionMaps.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.lyms.platform.pojo; - -public class RolePermissionMaps { - private String roleId; - - private String permissionId; - - private Integer yn; - - public String getRoleId() { - return roleId; - } - - public void setRoleId(String roleId) { - this.roleId = roleId; - - } - - public String getPermissionId() { - return permissionId; - } - - public void setPermissionId(String permissionId) { - this.permissionId = permissionId; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/Roles.java b/platform-dal/src/main/java/com/lyms/platform/pojo/Roles.java deleted file mode 100644 index 966bd37..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/Roles.java +++ /dev/null @@ -1,104 +0,0 @@ -package com.lyms.platform.pojo; - -import java.util.Date; - -public class Roles { - private String id; - - private Integer type; - - private String parentId; - - private String title; - - private String publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public String getParentId() { - return parentId; - } - - public void setParentId(String parentId) { - this.parentId = parentId; - - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - - } - - public String getPublishId() { - return publishId; - } - - public void setPublishId(String publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/UserRoleMaps.java b/platform-dal/src/main/java/com/lyms/platform/pojo/UserRoleMaps.java deleted file mode 100644 index de29a2b..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/UserRoleMaps.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.lyms.platform.pojo; - -public class UserRoleMaps { - private String userId; - - private String roleId; - - private Integer yn; - - public String getUserId() { - return userId; - } - - public void setUserId(String userId) { - this.userId = userId; - - } - - public String getRoleId() { - return roleId; - } - - public void setRoleId(String roleId) { - this.roleId = roleId; - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/Users.java b/platform-dal/src/main/java/com/lyms/platform/pojo/Users.java deleted file mode 100644 index 7aed4f5..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/Users.java +++ /dev/null @@ -1,158 +0,0 @@ -package com.lyms.platform.pojo; - -import java.util.Date; - -public class Users { - private String id; - - private Integer type; - - private String parentId; - - private Integer deptId; - - private String username; - - private String account; - - private String pwd;// - - private String phone; - - private String publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - private Date lastLoginTime; - - public Date getLastLoginTime() { - return lastLoginTime; - } - - public void setLastLoginTime(Date lastLoginTime) { - this.lastLoginTime = lastLoginTime; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public String getParentId() { - return parentId; - } - - public void setParentId(String parentId) { - this.parentId = parentId; - - } - - public Integer getDeptId() { - return deptId; - } - - public void setDeptId(Integer deptId) { - this.deptId = deptId; - - } - - public String getUsername() { - return username; - } - - public void setUsername(String username) { - this.username = username; - - } - - public String getAccount() { - return account; - } - - public void setAccount(String account) { - this.account = account; - - } - - public String getPwd() { - return pwd; - } - - public void setPwd(String pwd) { - this.pwd = pwd; - - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - - } - - public String getPublishId() { - return publishId; - } - - public void setPublishId(String publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/PermissionsQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/PermissionsQuery.java deleted file mode 100644 index 9a6db93..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/query/PermissionsQuery.java +++ /dev/null @@ -1,170 +0,0 @@ -package com.lyms.platform.query; - -import java.util.Date; - -import com.lyms.platform.common.dao.BaseQuery; - -public class PermissionsQuery extends BaseQuery { - private Integer id; - - private Integer type; - - private String moduleName; - - private String functionName; - - private String permissionName; - - private String action; - - private String ext; - - private String url; - - private Integer publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - private String moduleCode; - - private String functionCode; - - public String getModuleCode() { - return moduleCode; - } - - public void setModuleCode(String moduleCode) { - this.moduleCode = moduleCode; - } - - public String getFunctionCode() { - return functionCode; - } - - public void setFunctionCode(String functionCode) { - this.functionCode = functionCode; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public String getModuleName() { - return moduleName; - } - - public void setModuleName(String moduleName) { - this.moduleName = moduleName; - - } - - public String getFunctionName() { - return functionName; - } - - public void setFunctionName(String functionName) { - this.functionName = functionName; - - } - - public String getPermissionName() { - return permissionName; - } - - public void setPermissionName(String permissionName) { - this.permissionName = permissionName; - - } - - public String getAction() { - return action; - } - - public void setAction(String action) { - this.action = action; - - } - - public String getExt() { - return ext; - } - - public void setExt(String ext) { - this.ext = ext; - - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - - } - - public Integer getPublishId() { - return publishId; - } - - public void setPublishId(Integer publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/RolePermissionMapsQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/RolePermissionMapsQuery.java deleted file mode 100644 index 05562a8..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/query/RolePermissionMapsQuery.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.lyms.platform.query; - -import com.lyms.platform.common.dao.BaseQuery; - -public class RolePermissionMapsQuery extends BaseQuery { - private String roleId; - - private String permissionId; - - private Integer yn; - - public String getRoleId() { - return roleId; - } - - public void setRoleId(String roleId) { - this.roleId = roleId; - - } - - public String getPermissionId() { - return permissionId; - } - - public void setPermissionId(String permissionId) { - this.permissionId = permissionId; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/RolesQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/RolesQuery.java deleted file mode 100644 index 3a2b25a..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/query/RolesQuery.java +++ /dev/null @@ -1,104 +0,0 @@ -package com.lyms.platform.query; - -import java.util.Date; - -import com.lyms.platform.common.dao.BaseQuery; - -public class RolesQuery extends BaseQuery { - - private String id; - - private Integer type; - - private String parentId; - - private String title; - - private String publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getParentId() { - return parentId; - } - - public void setParentId(String parentId) { - this.parentId = parentId; - } - - public String getPublishId() { - return publishId; - } - - public void setPublishId(String publishId) { - this.publishId = publishId; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/UserRoleMapsQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/UserRoleMapsQuery.java deleted file mode 100644 index 3dedb97..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/query/UserRoleMapsQuery.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.lyms.platform.query; - -import com.lyms.platform.common.dao.BaseQuery; - -public class UserRoleMapsQuery extends BaseQuery { - private String userId; - - private String roleId; - - private Integer yn; - - public String getUserId() { - return userId; - } - - public void setUserId(String userId) { - this.userId = userId; - - } - - public String getRoleId() { - return roleId; - } - - public void setRoleId(String roleId) { - this.roleId = roleId; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } -} \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/UsersQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/UsersQuery.java deleted file mode 100644 index a8c9c03..0000000 --- a/platform-dal/src/main/java/com/lyms/platform/query/UsersQuery.java +++ /dev/null @@ -1,149 +0,0 @@ -package com.lyms.platform.query; - -import java.util.Date; - -import com.lyms.platform.common.dao.BaseQuery; - -public class UsersQuery extends BaseQuery { - private String id; - - private Integer type; - - private Integer parentId; - - private Integer deptId; - - private String username; - - private String account; - - private String pwd; - - private String phone; - - private Integer publishId; - - private String publishName; - - private Integer yn; - - private Date modified; - - private Date created; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - - } - - public Integer getParentId() { - return parentId; - } - - public void setParentId(Integer parentId) { - this.parentId = parentId; - - } - - public Integer getDeptId() { - return deptId; - } - - public void setDeptId(Integer deptId) { - this.deptId = deptId; - - } - - public String getUsername() { - return username; - } - - public void setUsername(String username) { - this.username = username; - - } - - public String getAccount() { - return account; - } - - public void setAccount(String account) { - this.account = account; - - } - - public String getPwd() { - return pwd; - } - - public void setPwd(String pwd) { - this.pwd = pwd; - - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - - } - - public Integer getPublishId() { - return publishId; - } - - public void setPublishId(Integer publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } - - public Integer getYn() { - return yn; - } - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - - } -} \ No newline at end of file