package com.genersoft.iot.vmp.storager.dao.dto;
|
|
public class Role {
|
|
private int id;
|
private String name;
|
private String authority;
|
private String createTime;
|
private String updateTime;
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAuthority() {
|
return authority;
|
}
|
|
public void setAuthority(String authority) {
|
this.authority = authority;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|