generated from msb_47094/GinChat
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.
23 lines
308 B
23 lines
308 B
10 months ago
|
/**
|
||
|
* @Auth:ShenZ
|
||
|
* @Description:
|
||
|
* @CreateDate:2022/06/15 14:57:55
|
||
|
*/
|
||
|
package models
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
//群信息
|
||
|
type GroupBasic struct {
|
||
|
gorm.Model
|
||
|
Name string
|
||
|
OwnerId uint
|
||
|
Icon string
|
||
|
Type int
|
||
|
Desc string
|
||
|
}
|
||
|
|
||
|
func (table *GroupBasic) TableName() string {
|
||
|
return "group_basic"
|
||
|
}
|