refactor-location #134

Closed
trunglam wants to merge 270 commits from refactor-location into master
1 changed files with 11 additions and 7 deletions
Showing only changes of commit 9a6980f3f9 - Show all commits

View File

@ -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"`
} }