1234567891011121314151617181920212223 |
- package com.cloudcross.ssp.model;
- import java.io.Serializable;
- @SuppressWarnings("serial")
- public class RoleAccount implements Serializable{
- private Integer roleId;
- private Integer accountId;
- public Integer getRoleId() {
- return roleId;
- }
- public void setRoleId(Integer roleId) {
- this.roleId = roleId;
- }
- public Integer getAccountId() {
- return accountId;
- }
- public void setAccountId(Integer accountId) {
- this.accountId = accountId;
- }
-
- }
|