|
|
@@ -2,9 +2,11 @@ package com.goafanti.report.bo;
|
|
|
|
|
|
public class CountMarketingStatisticsBo {
|
|
|
private String privateCustomersCount;
|
|
|
+ private String departmentNumber;
|
|
|
private String dayVisitNo;
|
|
|
private String dayTelNo;
|
|
|
private String dayFollowNo;
|
|
|
+ private String dayAVG;
|
|
|
private String weeklyVisitNo;
|
|
|
private String weeklyTelNo;
|
|
|
private String weeklyFollowNo;
|
|
|
@@ -131,5 +133,19 @@ public class CountMarketingStatisticsBo {
|
|
|
public void setYearFollowNo(String yearFollowNo) {
|
|
|
this.yearFollowNo = yearFollowNo;
|
|
|
}
|
|
|
+ public String getDayAVG() {
|
|
|
+ if (null==dayAVG)return "0";
|
|
|
+ return dayAVG;
|
|
|
+ }
|
|
|
+ public void setDayAVG(String dayAVG) {
|
|
|
+ this.dayAVG = dayAVG;
|
|
|
+ }
|
|
|
+ public String getDepartmentNumber() {
|
|
|
+ if (null==departmentNumber)return "0";
|
|
|
+ return departmentNumber;
|
|
|
+ }
|
|
|
+ public void setDepartmentNumber(String departmentNumber) {
|
|
|
+ this.departmentNumber = departmentNumber;
|
|
|
+ }
|
|
|
|
|
|
}
|