版本预发布

This commit is contained in:
孟帅
2023-02-08 20:29:34 +08:00
parent f11c7c5bf2
commit 2068d05c93
269 changed files with 16122 additions and 12075 deletions

View File

@@ -5,6 +5,7 @@
package do
import (
"github.com/gogf/gf/v2/encoding/gjson"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
@@ -15,12 +16,15 @@ type AdminNotice struct {
Id interface{} // 公告ID
Title interface{} // 公告标题
Type interface{} // 公告类型
Tag interface{} // 标签
Content interface{} // 公告内容
Receiver interface{} // 接收者
Reader interface{} // 已读人
Receiver *gjson.Json // 接收者
Remark interface{} // 备注
Sort interface{} // 排序
Status interface{} // 公告状态
CreatedBy interface{} // 发送人
UpdatedBy interface{} // 修改人
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
DeletedAt *gtime.Time // 删除时间
}