2023-12-21 22:17:40 +08:00
|
|
|
package dbstruct
|
|
|
|
|
|
|
|
type Feedback struct {
|
|
|
|
Id *int64 `json:"id" bson:"_id"` // 用户反馈表id
|
|
|
|
Mid *int64 `json:"mid" bson:"mid"` // 反馈用户mid
|
|
|
|
Discription *string `json:"discription" bson:"discription"` // 问题描述
|
|
|
|
Credentials *MediaComponent `json:"credentials" bson:"credentials"` // 问题凭证
|
2023-12-28 18:20:53 +08:00
|
|
|
Status *int64 `json:"status" bson:"status"` // 问题状态
|
2023-12-29 22:22:25 +08:00
|
|
|
Remarks *string `json:"remarks" bson:"remarks"` // 备注
|
2023-12-21 22:17:40 +08:00
|
|
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
|
|
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
|
|
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
|
|
|
|
|
|
|
}
|