v3.4.6
This commit is contained in:
@@ -89,4 +89,19 @@ public class VisualDevCrInput
|
||||
/// 是否启用流程.
|
||||
/// </summary>
|
||||
public int enableFlow { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口id.
|
||||
/// </summary>
|
||||
public string interfaceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口名称.
|
||||
/// </summary>
|
||||
public string interfaceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口参数.
|
||||
/// </summary>
|
||||
public string interfaceParam { get; set; }
|
||||
}
|
||||
|
||||
@@ -99,4 +99,19 @@ public class VisualDevInfoOutput
|
||||
/// 是否启用流程.
|
||||
/// </summary>
|
||||
public int enableFlow { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口id.
|
||||
/// </summary>
|
||||
public string interfaceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口名称.
|
||||
/// </summary>
|
||||
public string interfaceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口参数.
|
||||
/// </summary>
|
||||
public string interfaceParam { get; set; }
|
||||
}
|
||||
|
||||
@@ -100,4 +100,24 @@ public class VisualDevListOutput : TreeModel
|
||||
/// 是否启用流程.
|
||||
/// </summary>
|
||||
public int enableFlow { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口id.
|
||||
/// </summary>
|
||||
public string interfaceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口名称.
|
||||
/// </summary>
|
||||
public string interfaceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口参数.
|
||||
/// </summary>
|
||||
public string interfaceParam { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否显示包名(java用,.net不显示).
|
||||
/// </summary>
|
||||
public bool hasPackage { get; set; } = false;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.VisualDev.Entitys.Dto.VisualDev;
|
||||
|
||||
/// <summary>
|
||||
/// 功能信息输出.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class VisualDevShortLinkInfoOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
public string shortLink { get; set; }
|
||||
|
||||
public int formUse { get; set; } = 0;
|
||||
|
||||
public string formLink { get; set; }
|
||||
|
||||
public int formPassUse { get; set; } = 0;
|
||||
|
||||
public string formPassword { get; set; }
|
||||
|
||||
public int columnUse { get; set; } = 0;
|
||||
|
||||
public string columnLink { get; set; }
|
||||
|
||||
public int columnPassUse { get; set; } = 0;
|
||||
|
||||
public string columnPassword { get; set; }
|
||||
|
||||
public string columnCondition { get; set; }
|
||||
|
||||
public string columnText { get; set; }
|
||||
|
||||
public string userId { get; set; }
|
||||
|
||||
public string tenantId { get; set; }
|
||||
|
||||
public int enabledMark { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取外链配置输出.
|
||||
/// </summary>
|
||||
public class VisualdevShortLinkConfigOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public int formUse { get; set; } = 0;
|
||||
public int formPassUse { get; set; } = 0;
|
||||
public int columnUse { get; set; } = 0;
|
||||
public int columnPassUse { get; set; } = 0;
|
||||
public string columnCondition { get; set; }
|
||||
public string columnText { get; set; }
|
||||
public string userId { get; set; }
|
||||
public string tenantId { get; set; }
|
||||
public int enabledMark { get; set; }
|
||||
public string formLink { get; set; }
|
||||
public string columnLink { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取外链配置输出.
|
||||
/// </summary>
|
||||
public class VisualdevShortLinkFormConfigOutput
|
||||
{
|
||||
public string formData { get; set; }
|
||||
public string columnData { get; set; }
|
||||
public string appColumnData { get; set; }
|
||||
public string webType { get; set; }
|
||||
public string flowTemplateJson { get; set; }
|
||||
public string flowEnCode { get; set; }
|
||||
public string flowId { get; set; }
|
||||
public string fullName { get; set; }
|
||||
public int enableFlow { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.VisualDev.Entitys.Dto.VisualDev;
|
||||
|
||||
/// <summary>
|
||||
/// 功能表单外联信息输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class VisualDevShortLinkInput
|
||||
{
|
||||
public string encryption { get; set; }
|
||||
|
||||
public string tenantId { get; set; }
|
||||
|
||||
public string modelId { get; set; }
|
||||
|
||||
public string type { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.VisualDev.Entitys.Dto.VisualDev;
|
||||
|
||||
/// <summary>
|
||||
/// 在线表单外链密码验证 输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class VisualDevShortLinkPwdInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
public int type { get; set; }
|
||||
|
||||
public string password { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.VisualDev.Entitys.Dto.VisualDev;
|
||||
|
||||
/// <summary>
|
||||
/// 修改外链信息 输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class VisualdevShortLinkFormInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string shortLink { get; set; }
|
||||
public int formUse { get; set; }
|
||||
public string formLink { get; set; }
|
||||
public int formPassUse { get; set; }
|
||||
public string formPassword { get; set; }
|
||||
public int columnUse { get; set; }
|
||||
public string columnLink { get; set; }
|
||||
public int columnPassUse { get; set; }
|
||||
public string columnPassword { get; set; }
|
||||
public string columnCondition { get; set; }
|
||||
public string columnText { get; set; }
|
||||
public int enabledMark { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user