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-05-28 17:21:17 +00:00
|
|
|
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"`
|
2024-04-28 18:39:43 +00:00
|
|
|
}
|