mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-23 10:41:32 +08:00
22 lines
671 B
Go
22 lines
671 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// RoleInfo is the golang structure of table nv_role_info for DAO operations like Where/Data.
|
|
type RoleInfo struct {
|
|
g.Meta `orm:"table:nv_role_info, do:true"`
|
|
Id interface{} //
|
|
Name interface{} // 角色名称
|
|
Desc interface{} // 描述
|
|
CreatedAt *gtime.Time //
|
|
UpdatedAt *gtime.Time //
|
|
DeletedAt *gtime.Time //
|
|
}
|