syntax = "v1" info ( title: "剑鱼核心模块" // TODO: add title desc: "标讯搜索,标讯详情等"// TODO: add description author: "wangshan" email: "wangshan@topnet.net.cn" ) type ( searchReq { AppId string `json:"appId"` PageNum int64 `json:"pageNum"` PageSize int64 `json:"pageSize"` KeyWords string `json:"keyWords"` Province string `json:"province"` City string `json:"city"` Subtype string `json:"subtype"` PublishTime string `json:"publishTime"` SelectType string `json:"selectType"` Price string `json:"price"` Industry string `json:"industry"` BuyerClass string `json:"buyerClass"` BuyerTel string `json:"buyerTel"` WinnerTel string `json:"winnerTel"` ExclusionWords string `json:"exclusionWords"` FileExists string `json:"fileExists"` } // commonResp { Err_code int64 `json:"error_code"` Err_msg string `json:"error_msg"` Data interface{} `json:"data"` } ) service bxcore-api { @handler searchList post /jybx/core/:userType/searchList(searchReq) returns (commonResp) }