|
|
@@ -9,6 +9,9 @@ public class CountDepMarketingStatisticsBo extends CountMarketingStatisticsBo{
|
|
|
private String monthAVG;
|
|
|
private String yearAVG;
|
|
|
public String getDailyAVG() {
|
|
|
+ if (null==dailyAVG) {
|
|
|
+ return "0";
|
|
|
+ }
|
|
|
return dailyAVG;
|
|
|
}
|
|
|
|
|
|
@@ -17,6 +20,9 @@ public class CountDepMarketingStatisticsBo extends CountMarketingStatisticsBo{
|
|
|
}
|
|
|
|
|
|
public String getWeeklyAVG() {
|
|
|
+ if (null==weeklyAVG) {
|
|
|
+ return "0";
|
|
|
+ }
|
|
|
return weeklyAVG;
|
|
|
}
|
|
|
|
|
|
@@ -26,6 +32,9 @@ public class CountDepMarketingStatisticsBo extends CountMarketingStatisticsBo{
|
|
|
|
|
|
|
|
|
public String getMonthAVG() {
|
|
|
+ if (null==monthAVG) {
|
|
|
+ return "0";
|
|
|
+ }
|
|
|
return monthAVG;
|
|
|
}
|
|
|
|
|
|
@@ -34,6 +43,9 @@ public class CountDepMarketingStatisticsBo extends CountMarketingStatisticsBo{
|
|
|
}
|
|
|
|
|
|
public String getYearAVG() {
|
|
|
+ if (null==yearAVG) {
|
|
|
+ return "0";
|
|
|
+ }
|
|
|
return yearAVG;
|
|
|
}
|
|
|
|
|
|
@@ -42,6 +54,9 @@ public class CountDepMarketingStatisticsBo extends CountMarketingStatisticsBo{
|
|
|
}
|
|
|
|
|
|
public String getDepartmentNumber() {
|
|
|
+ if (null==departmentNumber) {
|
|
|
+ return "0";
|
|
|
+ }
|
|
|
return departmentNumber;
|
|
|
}
|
|
|
|