property_response.go
335 字节
package company
type PropertyResponse struct {
// 唯一标识
Districts []Districts `json:"districts"`
JoinWays []JoinWays `json:"joinWays"`
}
// 区域
type Districts struct {
Id int `json:"id"`
Name string `json:"name"`
}
// 合作类型
type JoinWays struct {
Type int64 `json:"type"`
Name string `json:"name"`
}