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.
14 lines
336 B
14 lines
336 B
6 months ago
|
package model
|
||
|
|
||
|
import "shop-api/global"
|
||
|
|
||
|
type CollectionMission struct { // 网红端收藏任务
|
||
|
MissionId uint `gorm:"type:int(11)" json:"mission_id"` // 任务id
|
||
|
CreateBy string `gorm:"size:64" json:"create_by"` // 创建人
|
||
|
global.MG_MODEL
|
||
|
}
|
||
|
|
||
|
func (CollectionMission) TableName() string {
|
||
|
return "collection_mission"
|
||
|
}
|