21 lines
705 B
Go
21 lines
705 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type PpidDataFilesResponse struct {
|
|
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"`
|
|
}
|