|
@@ -16,7 +16,7 @@ type (
|
|
|
Attach map[string]interface{} `json:"attach,optional"`
|
|
|
Contact Contact `json:"contact"`
|
|
|
AppId string `json:"appId"`
|
|
|
- EntId string `json:"entId"`
|
|
|
+ EntId int64 `json:"entId"`
|
|
|
UserId string `json:"userId"`
|
|
|
ValidityTime string `json:"validityTime,optional"`
|
|
|
Phone string `json:"phone"`
|
|
@@ -93,14 +93,14 @@ type (
|
|
|
}
|
|
|
commonReq {
|
|
|
UserId string `json:"userId,optional"`
|
|
|
- EntId string `json:"entId,optional"`
|
|
|
+ EntId int64 `json:"entId,optional"`
|
|
|
AppId string `json:"appId"`
|
|
|
Match string `json:"match,optional"`
|
|
|
MsgType int64 `json:"msgType,optional"`
|
|
|
}
|
|
|
commonRes {
|
|
|
- Err_code int `json:"err_code"`
|
|
|
- Err_msg string `json:"err_msg"`
|
|
|
+ Err_code int `json:"error_code"`
|
|
|
+ Err_msg string `json:"error_msg"`
|
|
|
Data interface{} `json:"data"`
|
|
|
}
|
|
|
)
|
|
@@ -149,7 +149,7 @@ service Info-api {
|
|
|
post /jyinfo/manage/infoList (infoListReq) returns (commonRes)
|
|
|
//管理后台信息详情
|
|
|
@handler infoDetail
|
|
|
- get /jyinfo/manage/infoDetail (reviewCommonReq) returns (commonRes)
|
|
|
+ post /jyinfo/manage/infoDetail (reviewCommonReq) returns (commonRes)
|
|
|
//管理后台审核
|
|
|
@handler infoExamine
|
|
|
post /jyinfo/manage/infoExamine (infoExamineReq) returns (commonRes)
|