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.
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BrokerBusinessAuditing struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
BusinessId uint // 入驻商id
|
|
AuditingUserId uint // 审核 人
|
|
AuditingUser Manage `gorm:"foreignKey:AuditingUserId"`
|
|
AuditingStatus uint // 审核状态
|
|
Reason string // 驳回原因
|
|
CreatedAt time.Time
|
|
}
|