You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webcrawler/web/src/main/resources/TestQry.thrift

23 lines
589 B

6 years ago
/**
* TestQry.thrift
* struct和一个服务接口service
* thrift-0.9.2
**/
namespace java com.thrift
struct QryResult {
/**
*, 10
*/
1:i32 code;
/**
*
*/
2:string msg;
}
service TestQry{
/**
* qryCode值为1时返回"成功"qryCode值为其他值时返回"失败"
* @param qryCode测试参数
*/
QryResult qryTest(1:i32 qryCode)
}