You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
342 B
10 lines
342 B
package model |
|
|
|
// DmDateParams . |
|
type DmDateParams struct { |
|
Bsp *BasicSearchParams |
|
Oid int64 `form:"oid" params:"oid" default:"-1"` |
|
Month string `form:"month" params:"month" default:""` |
|
MonthFrom string `form:"month_from" params:"month_from" default:""` |
|
MonthTo string `form:"month_to" params:"month_to" default:""` |
|
}
|
|
|