service/dbstruct/contact_customer_service.go

14 lines
672 B
Go
Raw Permalink Normal View History

2023-12-21 22:17:40 +08:00
package dbstruct
type ContactCustomerService struct {
2023-12-23 22:03:53 +08:00
Id *int64 `json:"id" bson:"_id"` // 联系客服表id
SessionId *int64 `json:"session_id" bson:"session_id"` // sessionId
Predicate *int64 `json:"predicate" bson:"predicate"` // 谓词0-联系客服1-客服处理
Message *string `json:"message" bson:"message"` // 发送信息
IsRead *int64 `json:"is_read" bson:"is_read"` // 是否已读
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
2023-12-21 22:17:40 +08:00
}