|
@@ -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 包含查询请求需要字段的查询参数接口
|