mirror of https://gitee.com/answerdev/answer.git
39 lines
1.2 KiB
Go
39 lines
1.2 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 BIGINT(20) id"`
|
|
CreatedAt time.Time `xorm:"created TIMESTAMP created_at"`
|
|
UpdatedAt time.Time `xorm:"updated TIMESTAMP updated_at"`
|
|
UserID string `xorm:"not null BIGINT(20) user_id"`
|
|
ObjectID string `xorm:"not null BIGINT(20) object_id"`
|
|
ReportedUserID string `xorm:"not null default 0 BIGINT(20) reported_user_id"`
|
|
ObjectType int `xorm:"not null default 0 INT(11) object_type"`
|
|
ReportType int `xorm:"not null default 0 INT(11) report_type"`
|
|
Content string `xorm:"not null TEXT content"`
|
|
FlaggedType int `xorm:"not null default 0 INT(11) flagged_type"`
|
|
FlaggedContent string `xorm:"TEXT flagged_content"`
|
|
Status int `xorm:"not null default 1 INT(11) status"`
|
|
}
|
|
|
|
// TableName report table name
|
|
func (Report) TableName() string {
|
|
return "report"
|
|
}
|