You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
12 lines
343 B
package StudentService
|
|
|
|
import (
|
|
"dsBigData/Business/Student/StudentDao"
|
|
"dsBigData/Business/Student/StudentModel"
|
|
)
|
|
|
|
func GetStudentCountByCityOrDistrict(cityCode string, districtCode string) ([]StudentModel.StudentCountAggsXxbxlx, error) {
|
|
arr, err := StudentDao.GetStudentCountByCityOrDistrict(cityCode, districtCode)
|
|
return arr, err
|
|
}
|