update model gettransaction
This commit is contained in:
parent
d7c2660ae2
commit
5b7d8329ae
|
@ -1,12 +1,16 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
// GetTransactionsRequest ...
|
// GetTransactionsRequest ...
|
||||||
type GetTransactionsRequest struct {
|
type GetTransactionsRequest struct {
|
||||||
Page int64 `json:"page"`
|
Page int64 `json:"page"`
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
Keyword string `json:"keyword"`
|
Keyword string `json:"keyword"`
|
||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
Source string `json:"source"`
|
Source string `json:"source"`
|
||||||
Campaign string `json:"campaign"`
|
Campaign string `json:"campaign"`
|
||||||
Seller string `json:"seller"`
|
Seller string `json:"seller"`
|
||||||
|
FromAt time.Time `json:"fromAt"`
|
||||||
|
ToAt time.Time `json:"toAt"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue