Commit a7357b20 by zhangchen

查询model增加姓名、身份证后四位、电话

parent b31ba12f
......@@ -65,6 +65,19 @@ public class CommuneOrderBean extends
* 推荐人工作Id
*/
private Integer userWorkerId;
/**
* 客户真实姓名
*/
private String realName;
/**
* 身份证后四位
*/
private String idCard;
/**
* 电话
*/
private String mobilePhone;
public String getRecommendCode() {
return recommendCode;
......@@ -163,4 +176,29 @@ public class CommuneOrderBean extends
this.userWorkerId = userWorkerId;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getIdCard() {
return idCard;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment