| | |
| | | regularCustomerList, _ := ServiceGroup.GetRegularCustomersList() |
| | | data.RegularCustomers = regularCustomerList |
| | | |
| | | // get Member list |
| | | memberList, _ := ServiceGroup.GetUserList() |
| | | data.Member = memberList |
| | | |
| | | // get Department list |
| | | departmentList, _ := ServiceGroup.GetDepartmentList() |
| | | data.Department = departmentList |
| | | |
| | | // get Satisfaction list |
| | | satisfactionList, _ := ServiceGroup.GetSatisfactionList() |
| | | data.Satisfaction = satisfactionList |
| | | |
| | | // get TimelyRate list |
| | | timelyRateList, _ := ServiceGroup.GetTimelyRateList() |
| | | data.TimelyRate = timelyRateList |
| | | |
| | | errCode = ecode.OK |
| | | |
| | | return |