This commit is contained in:
2023-05-31 10:19:05 +08:00
parent 1b65a7a9e5
commit 9c621c75cd
238 changed files with 9905 additions and 4034 deletions

View File

@@ -83,7 +83,7 @@ public class VisualDevEntity : CLDEntityBase
public string FlowTemplateJson { get; set; }
/// <summary>
/// 页面类型1、纯表单2、表单加列表.
/// 页面类型1、纯表单2、表单加列表3、系统表单4、数据视图.
/// </summary>
[SugarColumn(ColumnName = "F_WEBTYPE")]
public int WebType { get; set; } = 2;
@@ -105,4 +105,28 @@ public class VisualDevEntity : CLDEntityBase
/// </summary>
[SugarColumn(ColumnName = "F_ENABLEFLOW")]
public int EnableFlow { get; set; }
/// <summary>
/// 接口id.
/// </summary>
[SugarColumn(ColumnName = "F_INTERFACEID")]
public string InterfaceId { get; set; }
/// <summary>
/// 接口名称.
/// </summary>
[SugarColumn(ColumnName = "F_INTERFACENAME")]
public string InterfaceName { get; set; }
/// <summary>
/// 接口参数.
/// </summary>
[SugarColumn(ColumnName = "F_INTERFACEPARAM")]
public string InterfaceParam { get; set; }
/// <summary>
/// 是否外链(虚拟字段).
/// </summary>
[SugarColumn(IsIgnore = true)]
public bool isShortLink { get; set; } = false;
}