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
327 B
10 lines
327 B
package model |
|
|
|
// DmHistoryParams . |
|
type DmHistoryParams struct { |
|
Bsp *BasicSearchParams |
|
Oid int64 `form:"oid" params:"oid" default:"-1"` |
|
States []int64 `form:"states,split" params:"states"` |
|
CtimeFrom string `form:"ctime_from" params:"ctime_from"` |
|
CtimeTo string `form:"ctime_to" params:"ctime_to"` |
|
}
|
|
|