HttpMethod.properties
673 Bytes
#生成文件编码
charset=UTF-8
#方法名
methodName=QueryPage
#注释
description=商家后台-人员管理-在职/离职
#HTTP请求方法,GET POST PUT DELETE
method=GET
#请求URL
m=views.member.queryPage
#http请求参数转换类型,仅支持json、form(需根据实际http请求参数类型正确配置此参数,配置错误将影响生成代码正确性)
requestType=json
#http请求参数类型,requestType=form时,只可配置成Map<String, Object>
requestParamType=Map<String, Object>
#http请求参数名
requestParam=params
#http应答对象类型,例:JSONObject
responseType=JSONObject
#http应答参数名,例:jsonObject
responseParam=jsonObject