• 此项目
    • 正在载入...
  • 登录

mmm-go / partner · 文件

转到一个项目

GitLab

  • 转到群组
  • 项目
  • 活动
  • 文件
  • 提交
  • 管道 0
  • 构建 0
  • 图表
  • 里程碑
  • 问题 0
  • 合并请求 0
  • 成员
  • 标记
  • 维基
  • 派生
  • 网络
  • 创建新的问题
  • partner
  • pkg
  • protocol
  • company
  • property_response.go
  • 增加:增加 公司属性接口
    001edc75
    yangfu 在
    2020-09-07 17:50:24 +0800
    提交 浏览文件
property_response.go 335 字节
原文件 审查 历史 永久链接
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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"`
}