You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
429 B
Go
16 lines
429 B
Go
package request
|
|
|
|
import (
|
|
"pychr/model/common/request"
|
|
"time"
|
|
)
|
|
|
|
type GoodsShowSearch struct {
|
|
StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"`
|
|
EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"`
|
|
LangType int `json:"langType" form:"langType" `
|
|
Name string `json:"name" form:"name" `
|
|
Type int `json:"type" form:"type" `
|
|
request.PageInfo
|
|
}
|