You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.0 KiB
20 lines
1.0 KiB
package model
|
|
|
|
import (
|
|
"gorm.io/plugin/soft_delete"
|
|
"time"
|
|
)
|
|
|
|
type Message struct {
|
|
ID int32 `json:"id" gorm:"primarykey"`
|
|
CreatedAt time.Time `json:"createAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
DeletedAt soft_delete.DeletedAt `json:"deletedAt"`
|
|
FromUserId int32 `json:"fromUserId" gorm:"index"`
|
|
ToUserId int32 `json:"toUserId" gorm:"index;comment:'发送给端的id,可为用户id或者群id'"`
|
|
Content string `json:"content" gorm:"type:varchar(2500)"`
|
|
MessageType int16 `json:"messageType" gorm:"comment:'消息类型:1单聊,2群聊'"`
|
|
ContentType int16 `json:"contentType" gorm:"comment:'消息内容类型:1文字 2.普通文件 3.图片 4.音频 5.视频 6.语音聊天 7.视频聊天'"`
|
|
Pic string `json:"pic" gorm:"type:text;comment:'缩略图"`
|
|
Url string `json:"url" gorm:"type:varchar(350);comment:'文件或者图片地址'"`
|
|
}
|
|
|