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"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
PpidDataId int `json:"ppid_data_id"`
|
|
|
|
|
Description string `json:"description"`
|
|
|
|
|
Unit string `json:"unit"`
|
|
|
|
|
FileType string `json:"file_type"`
|
|
|
|
|
DownloadCount *int `json:"download_count"`
|
|
|
|
|
CreatedById *int `json:"created_by_id"`
|
|
|
|
|
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"`
|
|
|
|
|
}
|