This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package AreaService
import (
"dsBigData/Business/Area/AreaDao"
"dsBigData/Business/Area/AreaModel"
)
/**
功能:根据市编码获取该市下的区(县)列表
作者:吴缤
日期:2020-06-30
typeId -1:全部 1:县市区 2:开发区
*/
func PageDistrictByCityCode(cityCode string, typeId string) ([]AreaModel.Area, error) {
areaArr, err := AreaDao.PageDistrictByCityCode(cityCode, typeId)
return areaArr, err
}