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.
17 lines
464 B
17 lines
464 B
package request
|
|
|
|
type SearchStore struct {
|
|
StoreNo string `json:"store_no" form:"store_no"`
|
|
Email string `json:"email" form:"email"`
|
|
StartAt string `json:"start_at" form:"start_at"`
|
|
EndAt string `json:"end_at" form:"end_at"`
|
|
PageInfo
|
|
}
|
|
|
|
type SearchGoods struct {
|
|
PageInfo
|
|
Id uint `json:"id" form:"id"`
|
|
Title string `json:"title" form:"title" `
|
|
StoreNo string `json:"store_no" form:"store_no"`
|
|
Status int `json:"status" form:"status"`
|
|
}
|
|
|