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.
20 lines
381 B
20 lines
381 B
|
7 years ago
|
package rest
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/eyebluecn/tank/code/core"
|
||
|
|
)
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 分享记录和matter的关联表
|
||
|
|
*/
|
||
|
|
type Bridge struct {
|
||
|
|
Base
|
||
|
|
ShareUuid string `json:"shareUuid" gorm:"type:char(36)"`
|
||
|
|
MatterUuid string `json:"matterUuid" gorm:"type:char(36)"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// set File's table name to be `profiles`
|
||
|
|
func (this *Bridge) TableName() string {
|
||
|
|
return core.TABLE_PREFIX + "bridge"
|
||
|
|
}
|