service/vendor/dbstruct/contact_customer_service.go

15 lines
712 B
Go

package dbstruct
type ContactCustomerService struct {
Id *int64 `json:"id" bson:"_id"` // 实名认证表id
SubMid *int64 `json:"sub_mid" bson:"sub_mid"` // 主语mid(请求人)
ObjMid *int64 `json:"obj_mid" bson:"obj_mid"` // 宾语mid(处理人)
Predicate *int64 `json:"predicate" bson:"predicate"` // 谓词
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"` // 删除标记
}