mirror of https://gitee.com/answerdev/answer.git
39 lines
1.5 KiB
Go
39 lines
1.5 KiB
Go
package entity
|
|
|
|
import "time"
|
|
|
|
const (
|
|
ReportStatusPending = 1
|
|
ReportStatusCompleted = 2
|
|
ReportStatusDeleted = 10
|
|
)
|
|
|
|
var (
|
|
ReportStatus = map[string]int{
|
|
"pending": ReportStatusPending,
|
|
"completed": ReportStatusCompleted,
|
|
"deleted": ReportStatusDeleted,
|
|
}
|
|
)
|
|
|
|
// Report report
|
|
type Report struct {
|
|
ID string `xorm:"not null pk autoincr comment('id') BIGINT(20) id"`
|
|
CreatedAt time.Time `xorm:"created comment('create time') TIMESTAMP created_at"`
|
|
UpdatedAt time.Time `xorm:"updated comment('update time') TIMESTAMP updated_at"`
|
|
UserID string `xorm:"not null comment('reporter user id') BIGINT(20) user_id"`
|
|
ReportedUserID string `xorm:"not null comment('reported user id') BIGINT(20) reported_user_id"`
|
|
ObjectID string `xorm:"not null comment('object id') BIGINT(20) object_id"`
|
|
ObjectType int `xorm:"not null default 0 comment('revision type') INT(11) object_type"`
|
|
ReportType int `xorm:"not null default 0 comment('report type') INT(11) report_type"`
|
|
Content string `xorm:"not null comment('report content') TEXT content"`
|
|
FlagedType int `xorm:"not null default 0 comment('flaged type') INT(11) flaged_type"`
|
|
FlagedContent string `xorm:"not null comment('flaged content') TEXT flaged_content"`
|
|
Status int `xorm:"not null default 1 comment('status(normal: 1; delete 2)') INT(11) status"`
|
|
}
|
|
|
|
// TableName report table name
|
|
func (Report) TableName() string {
|
|
return "report"
|
|
}
|