finclip-app-manager/domain/entity/red_dot_read_record.go

10 lines
431 B
Go
Raw Normal View History

2023-10-31 14:07:26 +08:00
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"` //更新时间
}