1
This commit is contained in:
22
internal/app/system/model/module_tenant.go
Normal file
22
internal/app/system/model/module_tenant.go
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* @desc:模块租户关系模型对象
|
||||
* @company:云南奇讯科技有限公司
|
||||
* @Author: system
|
||||
* @Date: 2026/1/6
|
||||
*/
|
||||
|
||||
package model
|
||||
|
||||
import "github.com/tiger1103/gfast/v3/internal/app/system/model/entity"
|
||||
|
||||
// ModuleTenantRes 模块租户关系数据
|
||||
type ModuleTenantRes struct {
|
||||
*entity.ModuleTenant
|
||||
}
|
||||
|
||||
// ModuleTenantListRes 模块租户关系列表数据
|
||||
type ModuleTenantListRes struct {
|
||||
*entity.ModuleTenant
|
||||
ModuleName string `orm:"module_name" json:"moduleName"` // 模块名称
|
||||
TenantName string `orm:"tenant_name" json:"tenantName"` // 租户名称
|
||||
}
|
||||
Reference in New Issue
Block a user