23 lines
777 B
Go
23 lines
777 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type PpidDataFilesResponse struct {
|
|
ID uint `json:"id"`
|
|
Title *string `json:"title"`
|
|
Type *string `json:"type"`
|
|
PpidDataId int `json:"ppidDataId"`
|
|
FileName *string `json:"fileName"`
|
|
FileType *string `json:"fileType"`
|
|
FileUrl *string `json:"fileUrl"`
|
|
DownloadCount *int `json:"downloadCount"`
|
|
CreatedById *int `json:"createdById"`
|
|
Position *int `json:"position"`
|
|
StatusId *int `json:"statusId"`
|
|
IsPublish *bool `json:"isPublish"`
|
|
PublishedAt *time.Time `json:"publishedAt"`
|
|
IsActive *bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|