1700475150
private String subject;
1700475151
1700475152
//考试地点
1700475153
1700475154
private String location;
1700475155
1700475156
public String getSubject(){
1700475157
1700475158
return subject;
1700475159
1700475160
}
1700475161
1700475162
public void setSubject(String subject){
1700475163
1700475164
this.subject=subject;
1700475165
1700475166
}
1700475167
1700475168
public String getLocation(){
1700475169
1700475170
return location;
1700475171
1700475172
}
1700475173
1700475174
public void setLocation(String location){
1700475175
1700475176
this.location=location;
1700475177
1700475178
}
1700475179
1700475180
@Override
1700475181
1700475182
public boolean equals(Object obj){
1700475183
1700475184
if(obj instanceof ExtrinsicState){
1700475185
1700475186
ExtrinsicState state=(ExtrinsicState)obj;
1700475187
1700475188
return state.getLocation().equals(location)&& state.getSubject().equals(subject);
1700475189
1700475190
}
1700475191
1700475192
return false;
1700475193
1700475194
}
1700475195
1700475196
@Override
1700475197
1700475198
public int hashCode(){
1700475199
[
上一页 ]
[ :1.70047515e+09 ]
[
下一页 ]