Commit 829ce18c by chongli

显示占位客户的姓名、性别、手机号信息

parent a31e73af
...@@ -20,17 +20,20 @@ public class OfflineEventCustomerInfoBean implements Serializable{ ...@@ -20,17 +20,20 @@ public class OfflineEventCustomerInfoBean implements Serializable{
* *
*/ */
private static final long serialVersionUID = -3364726030785383865L; private static final long serialVersionUID = -3364726030785383865L;
private List<String> mobilePhones; private List<CustomerBean> customerInfos;
private int resourceId; private int resourceId;
private Date priceDate; private Date priceDate;
private String operator; private String operator;
public List<String> getMobilePhones() {
return mobilePhones;
public List<CustomerBean> getCustomerInfos() {
return customerInfos;
} }
public void setMobilePhones(List<String> mobilePhones) { public void setCustomerInfos(List<CustomerBean> customerInfos) {
this.mobilePhones = mobilePhones; this.customerInfos = customerInfos;
} }
public int getResourceId() { public int getResourceId() {
......
...@@ -15,6 +15,7 @@ import java.util.Date; ...@@ -15,6 +15,7 @@ import java.util.Date;
public class OrderPlayerBean implements Serializable { public class OrderPlayerBean implements Serializable {
private static final long serialVersionUID = -3937992593082010991L; private static final long serialVersionUID = -3937992593082010991L;
private String productName; private String productName;
private String gender;
private double amount; private double amount;
private String uid; private String uid;
private long orderId; private long orderId;
...@@ -281,4 +282,12 @@ public class OrderPlayerBean implements Serializable { ...@@ -281,4 +282,12 @@ public class OrderPlayerBean implements Serializable {
this.userGrade = userGrade; this.userGrade = userGrade;
} }
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
} }
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