|
package request
|
|
type AddReportSource struct {
|
Name string ` json:"name" binding:"required"`
|
}
|
|
type UpdateReportSource struct {
|
Id int `json:"id" binding:"required"`
|
Name string `json:"name" binding:"required"`
|
}
|
|
type UpdateReportSources struct {
|
ReportSources []*UpdateReportSource `json:"report_source" binding:"required"`
|
}
|