You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
599 B
26 lines
599 B
2 years ago
|
package relation
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
BlackModelTableName = "blacks"
|
||
|
)
|
||
|
|
||
|
type BlackModel struct {
|
||
|
OwnerUserID string `gorm:"column:owner_user_id;primary_key;size:64"`
|
||
|
BlockUserID string `gorm:"column:block_user_id;primary_key;size:64"`
|
||
|
CreateTime time.Time `gorm:"column:create_time"`
|
||
|
AddSource int32 `gorm:"column:add_source"`
|
||
|
OperatorUserID string `gorm:"column:operator_user_id;size:64"`
|
||
|
Ex string `gorm:"column:ex;size:1024"`
|
||
|
}
|
||
|
|
||
|
func (BlackModel) TableName() string {
|
||
|
return BlackModelTableName
|
||
|
}
|
||
|
|
||
|
type BlackModelInterface interface {
|
||
|
}
|