Browse Source

修改bug

yjp 2 months ago
parent
commit
ddd28f3cbb
1 changed files with 6 additions and 6 deletions
  1. 6 6
      framework/core/api/request/common.go

+ 6 - 6
framework/core/api/request/common.go

@@ -44,8 +44,8 @@ type TenantIDJsonBody struct {
 	TenantID string `json:"tenantId" binding:"required" assign:"toField:TenantID"`
 	TenantID string `json:"tenantId" binding:"required" assign:"toField:TenantID"`
 }
 }
 
 
-func (id *IDJsonBody) GetTenantID() string {
-	return id.ID
+func (id *TenantIDJsonBody) GetTenantID() string {
+	return id.TenantID
 }
 }
 
 
 // TenantIDQueryParam 查询参数中包含租户ID字段的定义结构
 // TenantIDQueryParam 查询参数中包含租户ID字段的定义结构
@@ -53,8 +53,8 @@ type TenantIDQueryParam struct {
 	TenantID string `form:"tenantId" binding:"required" assign:"toField:TenantID"`
 	TenantID string `form:"tenantId" binding:"required" assign:"toField:TenantID"`
 }
 }
 
 
-func (id *IDQueryParam) GetTenantID() string {
-	return id.ID
+func (id *TenantIDQueryParam) GetTenantID() string {
+	return id.TenantID
 }
 }
 
 
 // TenantIDPathParam 路径参数中包含租户ID字段的定义结构
 // TenantIDPathParam 路径参数中包含租户ID字段的定义结构
@@ -62,8 +62,8 @@ type TenantIDPathParam struct {
 	TenantID string `uri:"tenantId" binding:"required" assign:"toField:TenantID"`
 	TenantID string `uri:"tenantId" binding:"required" assign:"toField:TenantID"`
 }
 }
 
 
-func (id *IDPathParam) GetTenantID() string {
-	return id.ID
+func (id *TenantIDPathParam) GetTenantID() string {
+	return id.TenantID
 }
 }
 
 
 // QueryRequestParams 包含查询请求需要字段的查询参数接口
 // QueryRequestParams 包含查询请求需要字段的查询参数接口