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 }