10 lines
431 B
Go
10 lines
431 B
Go
|
package entity
|
||
|
|
||
|
type RedDotReadRecord struct {
|
||
|
Type string `json:"type" bson:"type"` //红点类型
|
||
|
TraceId string `json:"traceId" bson:"traceId"` //红点唯一标识
|
||
|
AccountId string `json:"accountId" bson:"accountId"` //已经阅读的账户Id
|
||
|
CreateTime int64 `json:"createTime" bson:"createTime""` //创建时间
|
||
|
UpdateTime int64 `json:"updateTime" bson:"UpdateTime"` //更新时间
|
||
|
}
|