16 lines
302 B
Go
16 lines
302 B
Go
|
package newsource
|
||
|
|
||
|
type PeopleResponse struct {
|
||
|
Data struct {
|
||
|
Records []PeopleRecord
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type PeopleRecord struct {
|
||
|
Title string `json:"title"`
|
||
|
Url string `json:"url"`
|
||
|
OriginName string `json:"originName"`
|
||
|
Content string `json:"content"`
|
||
|
InputTime int `json:"inputTime"`
|
||
|
}
|