package request import ( "srm/model/common/request" "srm/model/test" "time" ) type ProductSearch struct { test.Product StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"` EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"` request.PageInfo } type ProductCreate struct { List []*test.Product `json:"list"` }