package request import ( "srm/model/common/request" "srm/model/test" "time" ) type IndustrySearch struct { test.Industry StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"` EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"` request.PageInfo } type IndustryList struct { Industries []test.Industry `json:"industries"` }