|
|
|
@ -338,14 +338,14 @@ func SaveAppRange(appId string, rangeCodes []string) error {
|
|
|
|
|
功能:用于返回APP使用范围准备的实体
|
|
|
|
|
*/
|
|
|
|
|
type OrgBean struct {
|
|
|
|
|
OrgId string
|
|
|
|
|
OrgName string
|
|
|
|
|
OrgId string `json:"org_id"`
|
|
|
|
|
OrgName string `json:"org_name"`
|
|
|
|
|
}
|
|
|
|
|
type AppRangeBean struct {
|
|
|
|
|
FullFlag int
|
|
|
|
|
CityCode string
|
|
|
|
|
DistrictList []string
|
|
|
|
|
OrgList []OrgBean
|
|
|
|
|
FullFlag int `json:"full_flag"`
|
|
|
|
|
CityCode string `json:"city_code"`
|
|
|
|
|
DistrictList []string `json:"district_list"`
|
|
|
|
|
OrgList []OrgBean `json:"org_list"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|