21 lines
352 B
Java
21 lines
352 B
Java
package weaver.aiyh_quanshi.entity;
|
|
|
|
public class QsDialoutParty {
|
|
private String phone;
|
|
private String role;
|
|
public String getPhone() {
|
|
return phone;
|
|
}
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
public String getRole() {
|
|
return role;
|
|
}
|
|
public void setRole(String role) {
|
|
this.role = role;
|
|
}
|
|
|
|
|
|
}
|