22 lines
1007 B
Go
22 lines
1007 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// UserMessage is the golang structure for table user_message.
|
|
type UserMessage struct {
|
|
Id uint64 `json:"id" orm:"id" description:""` //
|
|
UserId uint64 `json:"userId" orm:"user_id" description:""` //
|
|
Title string `json:"title" orm:"title" description:""` //
|
|
Content string `json:"content" orm:"content" description:""` //
|
|
IsRead int `json:"isRead" orm:"is_read" description:""` //
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
|
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` //
|
|
}
|