init
This commit is contained in:
23
internal/model/entity/system_tenant_package.go
Normal file
23
internal/model/entity/system_tenant_package.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SystemTenantPackage is the golang structure for table system_tenant_package.
|
||||
type SystemTenantPackage struct {
|
||||
Id int64 `json:"id" orm:"id" description:"套餐编号"` // 套餐编号
|
||||
Name string `json:"name" orm:"name" description:"套餐名"` // 套餐名
|
||||
Status int `json:"status" orm:"status" description:"租户状态(0正常 1停用)"` // 租户状态(0正常 1停用)
|
||||
Remark string `json:"remark" orm:"remark" description:"备注"` // 备注
|
||||
MenuIds string `json:"menuIds" orm:"menu_ids" description:"关联的菜单编号"` // 关联的菜单编号
|
||||
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
||||
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
||||
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
||||
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
||||
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
||||
}
|
||||
Reference in New Issue
Block a user