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.
27 lines
548 B
27 lines
548 B
package com.example.demo.bean;
|
|
|
|
public class newteacher {
|
|
private String id;
|
|
private String name;
|
|
private String password;
|
|
|
|
public String getId(){
|
|
return id;
|
|
}
|
|
public void setId(String id){
|
|
this.id=id;
|
|
}
|
|
public String getName(){
|
|
return name;
|
|
}
|
|
public void setName(String name){
|
|
this.name=name;
|
|
}
|
|
public String getPassword(){
|
|
return password;
|
|
}
|
|
public void setPassword(String password){
|
|
this.password=password;
|
|
}
|
|
}
|