mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-07 02:00:47 +08:00
修改了http服务器无法正确处理post请求入参;添加了modbus tcp客户端支持。
This commit is contained in:
@@ -651,6 +651,10 @@ namespace Serein.NodeFlow.Services
|
||||
|
||||
|
||||
private Dictionary<SingleFlowCallNode, FlowApiMethodInfo> flowApiMethodInfos = [];
|
||||
/// <summary>
|
||||
/// 生成流程接口方法信息
|
||||
/// </summary>
|
||||
/// <param name="flowCallNodes"></param>
|
||||
private void GenerateFlowApi_InitFlowApiMethodInfos(SingleFlowCallNode[] flowCallNodes)
|
||||
{
|
||||
|
||||
@@ -667,6 +671,11 @@ namespace Serein.NodeFlow.Services
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 生成流程接口模板类
|
||||
/// </summary>
|
||||
/// <param name="sb"></param>
|
||||
private void GenerateFlowApi_InterfaceAndImpleClass(StringBuilder sb)
|
||||
{
|
||||
/*
|
||||
@@ -703,6 +712,10 @@ namespace Serein.NodeFlow.Services
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 生成流程接口参数
|
||||
/// </summary>
|
||||
/// <param name="sb"></param>
|
||||
private void GenerateFlowApi_ApiParamClass(StringBuilder sb)
|
||||
{
|
||||
var infos = flowApiMethodInfos.Values.ToArray();
|
||||
|
||||
Reference in New Issue
Block a user