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.
27 lines
1016 B
27 lines
1016 B
package model |
|
|
|
import xtime "go-common/library/time" |
|
|
|
//Version app version |
|
type Version struct { |
|
Plat int8 `json:"plat,omitempty"` |
|
Build int `json:"build,omitempty"` |
|
Condition string `json:"conditions,omitempty"` |
|
} |
|
|
|
//Relate relate card |
|
type Relate struct { |
|
ID int64 `json:"id,omitempty"` |
|
Param int64 `json:"param,omitempty"` |
|
Goto string `json:"goto,omitempty"` |
|
Title string `json:"title,omitempty"` |
|
ResourceIDs string `json:"resource_ids,omitempty"` |
|
TagIDs string `json:"tag_ids,omitempty"` |
|
ArchiveIDs string `json:"archive_ids,omitempty"` |
|
RecReason string `json:"rec_reason,omitempty"` |
|
Position int32 `json:"position,omitempty"` |
|
STime xtime.Time `json:"stime,omitempty"` |
|
ETime xtime.Time `json:"etime,omitempty"` |
|
Versions map[int8][]*Version `json:"versions,omitempty"` |
|
PgcIDs string |
|
}
|
|
|