28 lines
383 B
Go
28 lines
383 B
Go
package response
|
|
|
|
import (
|
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/util"
|
|
)
|
|
|
|
type AlibabaWdkTimeGetResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
dateTime
|
|
*/
|
|
DateTime int64 `json:"date_time,omitempty" `
|
|
/*
|
|
date
|
|
*/
|
|
Date util.LocalTime `json:"date,omitempty" `
|
|
}
|