Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
1234567891011121314 |
- 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" `
- }
|