mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-24 03:01:31 +08:00
20 lines
742 B
Go
20 lines
742 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// RoleInfo is the golang structure for table role_info.
|
|
type RoleInfo struct {
|
|
Id int `json:"id" description:""`
|
|
Name string `json:"name" description:"角色名称"`
|
|
Desc string `json:"desc" description:"描述"`
|
|
CreatedAt *gtime.Time `json:"createdAt" description:""`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
|
|
DeletedAt *gtime.Time `json:"deletedAt" description:""`
|
|
}
|