2024-03-05 19:15:53 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type PpidDataFilesResponse struct {
|
2024-04-28 18:39:43 +00:00
|
|
|
ID uint `json:"id"`
|
2024-04-29 17:34:05 +00:00
|
|
|
Title *string `json:"title"`
|
|
|
|
|
PpidDataId int `json:"ppidDataId"`
|
|
|
|
|
FileName uint `json:"fileName"`
|
|
|
|
|
FileType *string `json:"fileType"`
|
|
|
|
|
FileUrl string `json:"fileUrl"`
|
|
|
|
|
DownloadCount *int `json:"downloadCount"`
|
|
|
|
|
CreatedById *int `json:"createdById"`
|
2024-04-28 18:39:43 +00:00
|
|
|
StatusId *int `json:"status_id"`
|
|
|
|
|
IsPublish *bool `json:"is_publish"`
|
|
|
|
|
PublishedAt *time.Time `json:"published_at"`
|
|
|
|
|
IsActive *bool `json:"is_active"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
|
}
|