ecology_maven/weaver/aiyh_quanshi/entity/QsConfParty.java

87 lines
1.3 KiB
Java
Raw Normal View History

2021-11-14 15:29:16 +08:00
package weaver.aiyh_quanshi.entity;
public class QsConfParty {
private String name;
private String mobile;
private String email;
private Long userId;
/*
private String extName;
private Integer extType; //扩展名类型 1,微信号,2,QQ 号
*/
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
/*
public String getExtName() {
return extName;
}
*/
/*
public void setExtName(String extName) {
this.extName = extName;
}
public Integer getExtType() {
return extType;
}
public void setExtType(Integer extType) {
this.extType = extType;
}
*/
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the mobile
*/
public String getMobile() {
return mobile;
}
/**
* @param mobile
* the mobile to set
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @param email
* the email to set
*/
public void setEmail(String email) {
this.email = email;
}
}