|
@@ -1,69 +1,35 @@
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
package types
|
|
|
|
|
|
-type Response struct {
|
|
|
- Error_code int64 `json:"error_code"` //响应代码
|
|
|
- Error_msg string `json:"error_msg"` //响应消息
|
|
|
- Data string `json:"data"` //响应内容
|
|
|
-}
|
|
|
-
|
|
|
-type Resp struct {
|
|
|
- Error_code int64 `json:"error_code"` //响应代码
|
|
|
- Error_msg string `json:"error_msg"` //响应消息
|
|
|
+type CommonResp struct {
|
|
|
+ Error_code int64 `json:"error_code"`
|
|
|
+ Error_msg string `json:"error_msg"`
|
|
|
Data interface{} `json:"data"`
|
|
|
}
|
|
|
|
|
|
-type ExamineReq struct {
|
|
|
- EntId int64 `json:"entId"` //企业id
|
|
|
- AuthType string `json:"authType"` //审核状态 2审核通过 3审核不通过
|
|
|
- Reason string `json:"reason,optional"` //不通过原因
|
|
|
- AuditUser string `json:"auditUser"` //审核人
|
|
|
- ExamineId string `json:"examineId"` //审核id 认证记录表主键id
|
|
|
-}
|
|
|
-
|
|
|
-type CheckEntReq struct {
|
|
|
- EntId int64 `header:"entId"` //企业id
|
|
|
-}
|
|
|
-
|
|
|
-type AuthEntReq struct {
|
|
|
+type EntInfo struct {
|
|
|
Name string `json:"name"`
|
|
|
+ OrganizationType string `json:"organizationType"`
|
|
|
CreditCode string `json:"creditCode"`
|
|
|
+ CompanyType int64 `json:"companyType"`
|
|
|
AreaNumber string `json:"areaNumber"`
|
|
|
Business string `json:"business"`
|
|
|
OfficialLetter string `json:"officialLetter"`
|
|
|
- OrganizationType string `json:"organizationType"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
|
|
|
- ComPanyType string `json:"comPanyType"` //机构性质 1企业 2党政机关事业单位及其他
|
|
|
- AuthName string `json:"authName"` //联系人姓名
|
|
|
- AuthPhone string `json:"authPhone"` //联系人手机号
|
|
|
- Phone string `header:"phone"` //注册手机号
|
|
|
- EntId int64 `header:"entId,optional"`
|
|
|
-}
|
|
|
-
|
|
|
-type EntListReq struct {
|
|
|
- Name string `json:"name,optional"` //企业名称
|
|
|
- PageNum string `json:"pageNum,optional"` //页码,不传默认第一页 第一页为0
|
|
|
- PageSize string `json:"pageSize,optional"`
|
|
|
- CreditCode string `json:"creditCode,optional"`
|
|
|
- CreateStartTime string `json:"createStartTime,optional"`
|
|
|
- CreateEndTime string `json:"createEndTime,optional"`
|
|
|
- AuthStatus string `json:"authStatus,optional"`
|
|
|
- ValidStartTime string `json:"validStartTime,optional"`
|
|
|
- ValidEndTime string `json:"validEndTime,optional"`
|
|
|
- FrozenStatus string `json:"frozenStatus,optional"`
|
|
|
- RegPhone string `json:"regPhone,optional"`
|
|
|
- AuthPhone string `json:"authPhone,optional"`
|
|
|
-}
|
|
|
-
|
|
|
-type EntListResp struct {
|
|
|
- Error_code int64 `json:"error_code"` //响应代码
|
|
|
- Error_msg string `json:"error_msg"` //响应消息
|
|
|
- Data EntListData `json:"data"`
|
|
|
+ AuthStartTime string `json:"createTime"`
|
|
|
+ AuthEndTime string `json:"validTime"`
|
|
|
+ ForzenStatus int64 `json:"forzenStatus"`
|
|
|
+ AuthState int64 `json:"authStatus"`
|
|
|
+ ContactPerson string `json:"contactPerson"`
|
|
|
+ ContactPhone string `json:"contactPhone"`
|
|
|
+ AuthType int64 `json:"authType"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
+ SubmitTime string `json:"submitTime"` //提交时间 即库中的createtime
|
|
|
+ AuthReason string `json:"authReason"`
|
|
|
}
|
|
|
|
|
|
-type EntListData struct {
|
|
|
- Count int64 `json:"count"`
|
|
|
- PageSize int64 `json:"pageSize"`
|
|
|
- List []*EntList `json:"list"`
|
|
|
+type EntInfoResp struct {
|
|
|
+ Error_code int64 `json:"error_code"`
|
|
|
+ Error_msg string `json:"error_msg"`
|
|
|
+ Data *EntInfo `json:"data"`
|
|
|
}
|
|
|
|
|
|
type EntList struct {
|
|
@@ -77,48 +43,20 @@ type EntList struct {
|
|
|
FrozenStatus int64 `json:"frozenStatus"` //冻结状态 1正常 0冻结
|
|
|
}
|
|
|
|
|
|
-type ExamineListReq struct {
|
|
|
- Name string `json:"name,optional"` //机构名称
|
|
|
- AuthPhone string `json:"authPhone,optional"` //联系人手机号
|
|
|
- RegPhone string `json:"regPhone,optional"` //注册人手机号
|
|
|
- AuthType string `json:"authType,optional"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
- AuthStartTime string `json:"authStartTime,optional"` //申请开始时间
|
|
|
- AuthEndTime string `json:"authEndTime,optional"` //申请结束时间
|
|
|
- PageNum string `json:"pageNum,optional"` //页码
|
|
|
- PageSize string `json:"pageSize,optional"` //每页展示条数
|
|
|
-}
|
|
|
-
|
|
|
-type ExamineListResp struct {
|
|
|
- Error_code int64 `json:"error_code"`
|
|
|
- Error_msg string `json:"error_msg"`
|
|
|
- Data ExamineListData `json:"data"`
|
|
|
-}
|
|
|
-
|
|
|
-type ExamineListData struct {
|
|
|
- Count int64 `json:"count"`
|
|
|
- PageSize int64 `json:"pageSize"`
|
|
|
- List []*ExamineList `json:"list"`
|
|
|
-}
|
|
|
-
|
|
|
-type ExamineList struct {
|
|
|
- Id int64 `json:"id"` //机构id
|
|
|
- EntId int64 `json:"entId"` //企业id
|
|
|
- ComPanyType int64 `json:"comPanyType"` // 机构性质 1企业 2党政机关事业单位及其他
|
|
|
- Name string `json:"name"` //机构名称
|
|
|
- CreditCode string `json:"creditCode"` //统一社会信用代码
|
|
|
- AuthPhone string `json:"authPhone"` //联系人手机号
|
|
|
- ApplyTime string `json:"applyTime"` //申请时间戳
|
|
|
- AuthType int64 `json:"authType"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
- RegPhone string `json:"regPhone"` //注册人手机号
|
|
|
+type EntListData struct {
|
|
|
+ Count int64 `json:"count"`
|
|
|
+ PageSize int64 `json:"pageSize"`
|
|
|
+ List []*EntList `json:"list"`
|
|
|
}
|
|
|
|
|
|
-type EntInfoResp struct {
|
|
|
- Error_code int64 `json:"error_code"`
|
|
|
- Error_msg string `json:"error_msg"`
|
|
|
- Data *EntInfo `json:"data"`
|
|
|
+type EntUserReq struct {
|
|
|
+ AppId string `header:"appId,default=10000"`
|
|
|
+ EntUserId int64 `json:"entUserId,optional"`
|
|
|
+ HeaderEntUserId int64 `header:"entUserId,optional"`
|
|
|
+ EntId int64 `header:"entId,optional"`
|
|
|
}
|
|
|
|
|
|
-type EntInfo struct {
|
|
|
+type ExamineInfo struct {
|
|
|
Name string `json:"name"`
|
|
|
OrganizationType string `json:"organizationType"`
|
|
|
CreditCode string `json:"creditCode"`
|
|
@@ -126,15 +64,14 @@ type EntInfo struct {
|
|
|
AreaNumber string `json:"areaNumber"`
|
|
|
Business string `json:"business"`
|
|
|
OfficialLetter string `json:"officialLetter"`
|
|
|
- AuthStartTime string `json:"createTime"`
|
|
|
- AuthEndTime string `json:"validTime"`
|
|
|
- ForzenStatus int64 `json:"forzenStatus"`
|
|
|
AuthState int64 `json:"authStatus"`
|
|
|
ContactPerson string `json:"contactPerson"`
|
|
|
ContactPhone string `json:"contactPhone"`
|
|
|
- AuthType int64 `json:"authType"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
- SubmitTime string `json:"submitTime"` //提交时间 即库中的createtime
|
|
|
+ RegPhone string `json:"regPhone"`
|
|
|
+ AuthTime string `json:"authTime"`
|
|
|
AuthReason string `json:"authReason"`
|
|
|
+ AuditUser string `json:"auditUser"`
|
|
|
+ AuditTime string `json:"auditTime"`
|
|
|
}
|
|
|
|
|
|
type ExamineInfoReq struct {
|
|
@@ -147,27 +84,48 @@ type ExamineInfoResp struct {
|
|
|
Data *ExamineInfo `json:"data"`
|
|
|
}
|
|
|
|
|
|
-type ExamineInfo struct {
|
|
|
- Name string `json:"name"`
|
|
|
- OrganizationType string `json:"organizationType"`
|
|
|
- CreditCode string `json:"creditCode"`
|
|
|
- CompanyType int64 `json:"companyType"`
|
|
|
- AreaNumber string `json:"areaNumber"`
|
|
|
- Business string `json:"business"`
|
|
|
- OfficialLetter string `json:"officialLetter"`
|
|
|
- AuthState int64 `json:"authStatus"`
|
|
|
- ContactPerson string `json:"contactPerson"`
|
|
|
- ContactPhone string `json:"contactPhone"`
|
|
|
- RegPhone string `json:"regPhone"`
|
|
|
- AuthTime string `json:"authTime"`
|
|
|
- AuthReason string `json:"authReason"`
|
|
|
- AuditUser string `json:"auditUser"`
|
|
|
- AuditTime string `json:"auditTime"`
|
|
|
+type ExamineList struct {
|
|
|
+ Id int64 `json:"id"` //机构id
|
|
|
+ EntId int64 `json:"entId"` //企业id
|
|
|
+ ComPanyType int64 `json:"comPanyType"` // 机构性质 1企业 2党政机关事业单位及其他
|
|
|
+ Name string `json:"name"` //机构名称
|
|
|
+ CreditCode string `json:"creditCode"` //统一社会信用代码
|
|
|
+ AuthPhone string `json:"authPhone"` //联系人手机号
|
|
|
+ ApplyTime string `json:"applyTime"` //申请时间戳
|
|
|
+ AuthType int64 `json:"authType"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
+ RegPhone string `json:"regPhone"` //注册人手机号
|
|
|
}
|
|
|
|
|
|
-type UpdateEntReq struct {
|
|
|
- EntId int64 `json:"entId"` //企业id
|
|
|
- UpdateType int64 `json:"updateType"` //1-冻结 2-解冻
|
|
|
+type ExamineListData struct {
|
|
|
+ Count int64 `json:"count"`
|
|
|
+ PageSize int64 `json:"pageSize"`
|
|
|
+ List []*ExamineList `json:"list"`
|
|
|
+}
|
|
|
+
|
|
|
+type ExamineListReq struct {
|
|
|
+ Name string `json:"name,optional"` //机构名称
|
|
|
+ AuthPhone string `json:"authPhone,optional"` //联系人手机号
|
|
|
+ RegPhone string `json:"regPhone,optional"` //注册人手机号
|
|
|
+ AuthType string `json:"authType,optional"` //审核状态 1:待审核 2:审核通过 3:审核不通过
|
|
|
+ AuthStartTime string `json:"authStartTime,optional"` //申请开始时间
|
|
|
+ AuthEndTime string `json:"authEndTime,optional"` //申请结束时间
|
|
|
+ PageNum string `json:"pageNum,optional"` //页码
|
|
|
+ PageSize string `json:"pageSize,optional"` //每页展示条数
|
|
|
+}
|
|
|
+
|
|
|
+type ExamineListResp struct {
|
|
|
+ Error_code int64 `json:"error_code"`
|
|
|
+ Error_msg string `json:"error_msg"`
|
|
|
+ Data struct {
|
|
|
+ Count int64 `json:"count"`
|
|
|
+ PageSize int64 `json:"pageSize"`
|
|
|
+ List []*ExamineList `json:"list"`
|
|
|
+ } `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+type GetStatus struct {
|
|
|
+ AuthStatus int64 `json:"authStatus"`
|
|
|
+ IsInEnt bool `json:"isInEnt"`
|
|
|
}
|
|
|
|
|
|
type GetStatusByCodeReq struct {
|
|
@@ -181,23 +139,14 @@ type GetStatusByCodeResp struct {
|
|
|
Data *GetStatus `json:"data"`
|
|
|
}
|
|
|
|
|
|
-type GetStatus struct {
|
|
|
- AuthStatus int64 `json:"authStatus"`
|
|
|
- IsInEnt bool `json:"isInEnt"`
|
|
|
-}
|
|
|
-
|
|
|
-type UserReq struct {
|
|
|
- AppId string `header:"appId,default=10000"`
|
|
|
- UserId int `header:"newUserId,optional"` //session中的用户base_user_id
|
|
|
- Uid string `json:"uid,optional"` //前端传的uid
|
|
|
- Types string `json:"types,optional"` //类型,不传按默认规则获取 m大会员 e商机管理 v超级订阅 f免费订阅
|
|
|
+type GetUserInfoByPIdReq struct {
|
|
|
+ AppId string `header:"appId"`
|
|
|
+ PositionId string `json:"positionId"` //职位id
|
|
|
}
|
|
|
|
|
|
-type EntUserReq struct {
|
|
|
- AppId string `header:"appId,default=10000"`
|
|
|
- EntUserId int64 `json:"entUserId,optional"`
|
|
|
- HeaderEntUserId int64 `header:"entUserId,optional"`
|
|
|
- EntId int64 `header:"entId,optional"`
|
|
|
+type UpdateEntReq struct {
|
|
|
+ EntId int64 `json:"entId"` //企业id
|
|
|
+ UpdateType int64 `json:"updateType"` //1-冻结 2-解冻
|
|
|
}
|
|
|
|
|
|
type UserAddReq struct {
|
|
@@ -217,6 +166,24 @@ type UserAddReq struct {
|
|
|
Sex int64 `json:"sex,optional"`
|
|
|
}
|
|
|
|
|
|
+type UserDelReq struct {
|
|
|
+ Authorization string `header:"Authorization"`
|
|
|
+ Id int64 `json:"id"`
|
|
|
+}
|
|
|
+
|
|
|
+type UserIdentityReq struct {
|
|
|
+ AppId string `json:"appId"`
|
|
|
+ NewUserId int64 `json:"newUserId"`
|
|
|
+ EntId int64 `json:"entId,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+type UserReq struct {
|
|
|
+ AppId string `header:"appId,default=10000"`
|
|
|
+ UserId int `header:"newUserId,optional"` //session中的用户base_user_id
|
|
|
+ Uid string `json:"uid,optional"` //前端传的uid
|
|
|
+ Types string `json:"types,optional"` //类型,不传按默认规则获取 m大会员 e商机管理 v超级订阅 f免费订阅
|
|
|
+}
|
|
|
+
|
|
|
type UserUpdateReq struct {
|
|
|
Authorization string `header:"Authorization"`
|
|
|
Appid string `json:"appid"`
|
|
@@ -232,69 +199,110 @@ type UserUpdateReq struct {
|
|
|
Unionid string `json:"unionid,optional"`
|
|
|
}
|
|
|
|
|
|
-type UserDelReq struct {
|
|
|
- Authorization string `header:"Authorization"`
|
|
|
- Id int64 `json:"id"`
|
|
|
+type WorkDesktopClearUserInfo struct {
|
|
|
+ Platform string `json:"platform,default=PC,options=PC|WX|APP|H5"`
|
|
|
+ PositionId string `header:"positionId,optional"` //职位id
|
|
|
+ UserId string `header:"userId"`
|
|
|
+ AppId string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
-type WorkDesktopMenuInfoReq struct {
|
|
|
+type WorkDesktopComprehensiveReq struct {
|
|
|
Platform string `json:"platform,default=PC,options=PC|WX|APP|H5"`
|
|
|
- UserId string `header:"userId"`
|
|
|
+ UserId string `header:"userId,optional"`
|
|
|
AppId string `header:"appId"`
|
|
|
Phone string `header:"phone,optional"`
|
|
|
- NewUserId string `header:"newUserId"` //base_user_id<---base_user
|
|
|
+ MenuMode string `json:"menuMode,optional"`
|
|
|
+ MenuIds string `json:"menuIds,optional"`
|
|
|
+ ActionMode string `path:"actionMode,options=commonlyRenew|commonlyList|menuMode"`
|
|
|
+ NewUserId string `header:"newUserId,optional"`
|
|
|
EntId string `header:"entId,optional"`
|
|
|
EntUserId string `header:"entUserId,optional"`
|
|
|
AccountId string `header:"accountId,optional"` //账户id
|
|
|
EntAccountId string `header:"entAccountId,optional"` //企业账户id
|
|
|
PositionType string `header:"positionType,optional"` //职位类型 0个人 1企业
|
|
|
PositionId string `header:"positionId,optional"` //职位id
|
|
|
- WorkStatus int64 `json:"workStatus,optional"` //服务是否可用;1:内网可用;-1:不可用
|
|
|
MgoUserId string `header:"mgoUserId,optional"` //原userId
|
|
|
EntNicheDis int64 `header:"entNicheDis,optional"` // 企业下角色 0:销售 1:企业资讯分配 2:部门资讯分配 3:企业资讯分配+销售 4:部门资讯分配+销售
|
|
|
EntUserRole string `header:"entUserRole,optional"` // 企业下角色 1:情报处理岗 2:情报分配岗 3:信息浏览岗 4:销售管理岗,多个逗号拼接
|
|
|
}
|
|
|
|
|
|
-type WorkDesktopComprehensiveReq struct {
|
|
|
+type WorkDesktopMenuInfoReq struct {
|
|
|
Platform string `json:"platform,default=PC,options=PC|WX|APP|H5"`
|
|
|
UserId string `header:"userId"`
|
|
|
AppId string `header:"appId"`
|
|
|
Phone string `header:"phone,optional"`
|
|
|
- MenuMode string `json:"menuMode,optional"`
|
|
|
- MenuIds string `json:"menuIds,optional"`
|
|
|
- ActionMode string `path:"actionMode,options=commonlyRenew|commonlyList|menuMode"`
|
|
|
- NewUserId string `header:"newUserId"`
|
|
|
+ NewUserId string `header:"newUserId"` //base_user_id<---base_user
|
|
|
EntId string `header:"entId,optional"`
|
|
|
EntUserId string `header:"entUserId,optional"`
|
|
|
AccountId string `header:"accountId,optional"` //账户id
|
|
|
EntAccountId string `header:"entAccountId,optional"` //企业账户id
|
|
|
PositionType string `header:"positionType,optional"` //职位类型 0个人 1企业
|
|
|
PositionId string `header:"positionId,optional"` //职位id
|
|
|
+ WorkStatus int64 `json:"workStatus,optional"` //服务是否可用;1:内网可用;-1:不可用
|
|
|
MgoUserId string `header:"mgoUserId,optional"` //原userId
|
|
|
EntNicheDis int64 `header:"entNicheDis,optional"` // 企业下角色 0:销售 1:企业资讯分配 2:部门资讯分配 3:企业资讯分配+销售 4:部门资讯分配+销售
|
|
|
EntUserRole string `header:"entUserRole,optional"` // 企业下角色 1:情报处理岗 2:情报分配岗 3:信息浏览岗 4:销售管理岗,多个逗号拼接
|
|
|
}
|
|
|
|
|
|
-type CommonResp struct {
|
|
|
- Error_code int64 `json:"error_code"`
|
|
|
- Error_msg string `json:"error_msg"`
|
|
|
- Data interface{} `json:"data"`
|
|
|
+type AuthEntReq struct {
|
|
|
+ Name string `json:"name"`
|
|
|
+ CreditCode string `json:"creditCode"`
|
|
|
+ AreaNumber string `json:"areaNumber"`
|
|
|
+ Business string `json:"business"`
|
|
|
+ OfficialLetter string `json:"officialLetter"`
|
|
|
+ OrganizationType string `json:"organizationType"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
|
|
|
+ ComPanyType string `json:"comPanyType"` //机构性质 1企业 2党政机关事业单位及其他
|
|
|
+ AuthName string `json:"authName"` //联系人姓名
|
|
|
+ AuthPhone string `json:"authPhone"` //联系人手机号
|
|
|
+ Phone string `header:"phone"` //注册手机号
|
|
|
+ EntId int64 `header:"entId,optional"`
|
|
|
}
|
|
|
|
|
|
-type WorkDesktopClearUserInfo struct {
|
|
|
- Platform string `json:"platform,default=PC,options=PC|WX|APP|H5"`
|
|
|
- PositionId string `header:"positionId,optional"` //职位id
|
|
|
- UserId string `header:"userId"`
|
|
|
- AppId string `header:"appId"`
|
|
|
+type CheckEntReq struct {
|
|
|
+ EntId int64 `header:"entId"` //企业id
|
|
|
}
|
|
|
|
|
|
-type UserIdentityReq struct {
|
|
|
- AppId string `json:"appId"`
|
|
|
- NewUserId int64 `json:"newUserId"`
|
|
|
- EntId int64 `json:"entId,optional"`
|
|
|
+type EntListReq struct {
|
|
|
+ Name string `json:"name,optional"` //企业名称
|
|
|
+ PageNum string `json:"pageNum,optional"` //页码,不传默认第一页 第一页为0
|
|
|
+ PageSize string `json:"pageSize,optional"`
|
|
|
+ CreditCode string `json:"creditCode,optional"`
|
|
|
+ CreateStartTime string `json:"createStartTime,optional"`
|
|
|
+ CreateEndTime string `json:"createEndTime,optional"`
|
|
|
+ AuthStatus string `json:"authStatus,optional"`
|
|
|
+ ValidStartTime string `json:"validStartTime,optional"`
|
|
|
+ ValidEndTime string `json:"validEndTime,optional"`
|
|
|
+ FrozenStatus string `json:"frozenStatus,optional"`
|
|
|
+ RegPhone string `json:"regPhone,optional"`
|
|
|
+ AuthPhone string `json:"authPhone,optional"`
|
|
|
}
|
|
|
|
|
|
-type GetUserInfoByPIdReq struct {
|
|
|
- AppId string `header:"appId"`
|
|
|
- PositionId string `json:"positionId"` //职位id
|
|
|
+type EntListResp struct {
|
|
|
+ Error_code int64 `json:"error_code"` //响应代码
|
|
|
+ Error_msg string `json:"error_msg"` //响应消息
|
|
|
+ Data struct {
|
|
|
+ Count int64 `json:"count"`
|
|
|
+ PageSize int64 `json:"pageSize"`
|
|
|
+ List []*EntList `json:"list"`
|
|
|
+ } `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+type ExamineReq struct {
|
|
|
+ EntId int64 `json:"entId"` //企业id
|
|
|
+ AuthType string `json:"authType"` //审核状态 2审核通过 3审核不通过
|
|
|
+ Reason string `json:"reason,optional"` //不通过原因
|
|
|
+ AuditUser string `json:"auditUser"` //审核人
|
|
|
+ ExamineId string `json:"examineId"` //审核id 认证记录表主键id
|
|
|
+}
|
|
|
+
|
|
|
+type Resp struct {
|
|
|
+ Error_code int64 `json:"error_code"` //响应代码
|
|
|
+ Error_msg string `json:"error_msg"` //响应消息
|
|
|
+ Data interface{} `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+type Response struct {
|
|
|
+ Error_code int64 `json:"error_code"` //响应代码
|
|
|
+ Error_msg string `json:"error_msg"` //响应消息
|
|
|
+ Data string `json:"data"` //响应内容
|
|
|
}
|