hotgo/server/internal/model/entity/admin_notice.go

29 lines
1.3 KiB
Go
Raw Normal View History

2022-11-24 23:37:34 +08:00
// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
2023-02-08 20:29:34 +08:00
"github.com/gogf/gf/v2/encoding/gjson"
2022-11-24 23:37:34 +08:00
"github.com/gogf/gf/v2/os/gtime"
)
// AdminNotice is the golang structure for table admin_notice.
type AdminNotice struct {
Id int64 `json:"id" description:"公告ID"`
Title string `json:"title" description:"公告标题"`
Type int64 `json:"type" description:"公告类型"`
2023-02-08 20:29:34 +08:00
Tag int `json:"tag" description:"标签"`
2022-11-24 23:37:34 +08:00
Content string `json:"content" description:"公告内容"`
2023-02-08 20:29:34 +08:00
Receiver *gjson.Json `json:"receiver" description:"接收者"`
2022-11-24 23:37:34 +08:00
Remark string `json:"remark" description:"备注"`
Sort int `json:"sort" description:"排序"`
Status int `json:"status" description:"公告状态"`
2023-02-08 20:29:34 +08:00
CreatedBy int64 `json:"createdBy" description:"发送人"`
UpdatedBy int64 `json:"updatedBy" description:"修改人"`
2022-11-24 23:37:34 +08:00
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
2023-02-08 20:29:34 +08:00
DeletedAt *gtime.Time `json:"deletedAt" description:"删除时间"`
2022-11-24 23:37:34 +08:00
}