package com.vci.client.auth2.vo;
|
|
public class SelectedSubjectItem extends Object {
|
|
private String code;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
private String name;
|
private String type;
|
|
public boolean equals(Object obj) {
|
if (obj != null) {
|
if (((SelectedSubjectItem) obj).code == this.code) {
|
return true;
|
}
|
}
|
return false;
|
}
|
|
public String toString() {
|
return "{" + this.code + ", " + this.name + ", " + this.type + "}";
|
}
|
|
}
|