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 ImGroup struct {
- Id int `json:"id"`
- Kind int `json:"kind"`
- Uid int `json:"uid"`
- GroupId int `json:"group_id"`
- IsFull int `json:"is_full"`
- Name string `json:"name" `
- CreateTime time.Time `json:"create_time"`
- UpdateTime time.Time `json:"update_time" `
- }
|