|
|
@ -21,11 +21,11 @@ public class CodeFormCopy : BaseOrgModel<long>
|
|
|
|
[SugarColumn(ColumnDescription = "权限模块名称", IsNullable = false,Length = 50)]
|
|
|
|
[SugarColumn(ColumnDescription = "权限模块名称", IsNullable = false,Length = 50)]
|
|
|
|
public string PermissionName { get; set; }
|
|
|
|
public string PermissionName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///// <summary>
|
|
|
|
/// 中文视图名
|
|
|
|
///// 中文视图名
|
|
|
|
/// </summary>
|
|
|
|
///// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "中文视图名", IsNullable = false, Length = 100)]
|
|
|
|
//[SugarColumn(ColumnDescription = "中文视图名", IsNullable = false, Length = 100)]
|
|
|
|
public string ColumnView { get; set; }
|
|
|
|
//public string ColumnView { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 模板名称
|
|
|
|
/// 模板名称
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -37,12 +37,26 @@ public class CodeFormCopy : BaseOrgModel<long>
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "是否公共标识", IsNullable = false,DefaultValue = "0")]
|
|
|
|
[SugarColumn(ColumnDescription = "是否公共标识", IsNullable = false,DefaultValue = "0")]
|
|
|
|
public bool IsPublic { get; set; } = false;
|
|
|
|
public bool IsPublic { get; set; } = false;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 表单默认设置
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "表单默认设置", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
|
|
|
|
public string DefaultContent { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 表单字段复制设置
|
|
|
|
/// 表单字段复制设置
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "表单字段复制设置", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
[SugarColumn(ColumnDescription = "表单字段复制设置", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
public string Content { get; set; }
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 复制字段集合
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "复制字段集合", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
|
|
|
|
public string CopyFields { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// 表单序号
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "表单序号", IsNullable = false, DefaultValue = "0")]
|
|
|
|
|
|
|
|
public int FormNo { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 排序号
|
|
|
|
/// 排序号
|
|
|
|