|
package param
|
|
|
|
import "git.gocasts.ir/ebhomengo/niki/salesreportapp/entity"
|
|
|
|
type GetReportFiltersRequest struct {
|
|
ReportId int64 `json:"report_id"`
|
|
}
|
|
|
|
type GetReportDataRequest struct {
|
|
ReportID int `json:"reportID"`
|
|
Filters []entity.QueryCondition `json:"filters"`
|
|
}
|