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.
18 lines
494 B
18 lines
494 B
package model |
|
|
|
import "go-common/library/time" |
|
|
|
// Jointly def. |
|
type Jointly struct { |
|
ID int64 `json:"id"` |
|
Title string `json:"title"` |
|
Content string `json:"content"` |
|
StartTime int64 `json:"start_time"` |
|
EndTime int64 `json:"end_time"` |
|
Link string `json:"link"` |
|
IsHot int8 `json:"is_hot"` |
|
State int8 `json:"state"` |
|
Operator string `json:"operator"` |
|
CTime time.Time `json:"ctime"` |
|
MTime time.Time `json:"mtime"` |
|
}
|
|
|