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.
go-library/service/topsdk/ability304/domain/TaobaoFilesGetTopDownloadRe...

33 lines
739 B

2 years ago
package domain
import (
"topsdk/util"
)
type TaobaoFilesGetTopDownloadRecordDo struct {
/*
*/
Url *string `json:"url,omitempty" `
/*
*/
Created *util.LocalTime `json:"created,omitempty" `
/*
1:2: */
Status *int64 `json:"status,omitempty" `
}
func (s *TaobaoFilesGetTopDownloadRecordDo) SetUrl(v string) *TaobaoFilesGetTopDownloadRecordDo {
s.Url = &v
return s
}
func (s *TaobaoFilesGetTopDownloadRecordDo) SetCreated(v util.LocalTime) *TaobaoFilesGetTopDownloadRecordDo {
s.Created = &v
return s
}
func (s *TaobaoFilesGetTopDownloadRecordDo) SetStatus(v int64) *TaobaoFilesGetTopDownloadRecordDo {
s.Status = &v
return s
}