提交 ef6b7180 编写于 作者: tony001's avatar tony001

数据服务fetch增加post请求方式

上级 4ceb9bfb
......@@ -512,6 +512,24 @@ export default class ${srfclassname('${item.getCodeName()}')}ServiceBase extends
<@service_block item=item singleAppMethod=singleAppMethod/>
</#if>
}
<#-- 查询数据集(post方式)start -->
<#if singleAppMethod.getMethodType?? && singleAppMethod.getMethodType()?? && singleAppMethod.getMethodType() == "FETCH">
<#assign dataSet = singleAppMethod.getPSDEDataSet() />
/**
* search${dataSet.getCodeName()}接口方法
*
* @param {*} [context={}]
* @param {*} [data={}]
* @param {boolean} [isloading]
* @returns {Promise<any>}
* @memberof ${srfclassname('${item.getCodeName()}')}ServiceBase
*/
public async search${dataSet.getCodeName()}(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
return null;
}
</#if>
<#-- 查询数据集(post方式)end -->
</#if>
</#if>
</#list>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册