forked from ps2hc5nfx/youxi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
532 B
41 lines
532 B
package com.ischoolbar.programmer.entity.admin;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@Component
|
|
public class Role {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String remark;//注
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
|
|
}
|