service/dbstruct/contact_customer_service_se...

19 lines
771 B
Go
Raw Normal View History

2023-12-23 22:03:53 +08:00
package dbstruct
type ContactCustomerServiceSession struct {
Id *int64 `json:"id" bson:"_id"` // Session表id
SubMid *int64 `json:"sub_mid" bson:"sub_mid"` // 主语mid
ObjMid *int64 `json:"obj_mid" bson:"obj_mid"` // 宾语mid
RecentMessage *string `json:"recent_message" bson:"recent_message"` // 最近消息
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
2024-09-12 11:54:16 +08:00
}
2023-12-23 22:03:53 +08:00
2024-09-12 11:54:16 +08:00
func (p *ContactCustomerServiceSession) GetId() int64 {
if p == nil || p.Id == nil {
return -1
}
return *p.Id
2023-12-23 22:03:53 +08:00
}