medol-be/app/module/ppid_data_files/response/ppid_data_files.response.go

21 lines
699 B
Go

package response
import "time"
type PpidDataFilesResponse struct {
ID uint `json:"id"`
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"`
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"`
}