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.

18 lines
431 B

This file contains ambiguous Unicode characters!

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
}