1 Star 0 Fork 0

firefly / chat-svc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
chat.go 271 Bytes
一键复制 编辑 原始数据 按行查看 历史
grail 提交于 2021-09-15 15:09 . v2
package model
import (
"gorm.io/gorm"
)
type Chat struct {
gorm.Model
Uid uint64 `gorm:"index"`
ToUid uint64 `gorm:"index"`
Message string `gorm:"size:3000"`
Status bool
}
type ChatHistory struct {
gorm.Model
Uid uint64 `gorm:"index"`
ToUid uint64
}
Go
1
https://gitee.com/fireflylove/chat-svc.git
git@gitee.com:fireflylove/chat-svc.git
fireflylove
chat-svc
chat-svc
v1.0.1

搜索帮助