This commit is contained in:
苏尹岚
2021-01-26 08:59:14 +08:00
parent 7788b79993
commit 575b80d890
6 changed files with 154 additions and 3 deletions

View File

@@ -124,3 +124,18 @@ func (c *SysController) GetEbaiRTFDetail() {
w.WriteHeader(http.StatusOK)
io.WriteString(w, html)
}
// @Title 得到平台账号信息
// @Description 得到平台账号信息
// @Param token header string true "token"
// @Param vendorID query int false "平台ID"
// @Param vendorOrgCode query string false "平台账号"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetVendorOrgCode [get]
func (c *SysController) GetVendorOrgCode() {
c.callGetVendorOrgCode(func(params *tSysGetVendorOrgCodeParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}