package request import ( "srm/model/common/request" "srm/model/test" "time" ) type SupplierTypeSearch struct { test.SupplierType StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"` EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"` request.PageInfo } type SupplierTypeList struct { SupplierTypes []test.SupplierType `json:"supplierTypes"` }