You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.0 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.Code.Entity;
/// <summary>
/// 租户表单设置
/// </summary>
[SqlSugar.SugarTable("op_code_form_set", "租户表单设置")]
public class CodeFormSet : BaseOrgModel<long>
{
/// <summary>
/// 权限Id
/// </summary>
[SugarColumn(ColumnDescription = "权限Id", IsNullable = false)]
public long? PermissionId { get; set; }
/// <summary>
/// 权限模块名称
/// </summary>
[SugarColumn(ColumnDescription = "权限模块名称", IsNullable = false,Length = 50)]
public string PermissionName { get; set; }
/// <summary>
/// 表单序号
/// </summary>
[SugarColumn(ColumnDescription = "表单序号", IsNullable = false, DefaultValue = "0")]
public int FormNo { get; set; } = 0;
///// <summary>
///// 中文视图名
///// </summary>
//[SugarColumn(ColumnDescription = "中文视图名", IsNullable = false, Length = 100)]
//public string ColumnView { get; set; }
/// <summary>
/// 模板名称
/// </summary>
[SugarColumn(ColumnDescription = "模板名称", IsNullable = false, Length = 50)]
public string TemplateName { get; set; }
/// <summary>
/// 表单默认设置
/// </summary>
[SugarColumn(ColumnDescription = "表单默认设置", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string DefaultContent { get; set; }
/// <summary>
/// 表单设置
/// </summary>
[SugarColumn(ColumnDescription = "表单设置", IsNullable = true, ColumnDataType=StaticConfig.CodeFirst_BigString)]
public string Content { get; set; }
/// <summary>
/// 排序号
/// </summary>
[SugarColumn(ColumnDescription = "排序号", IsNullable = true,DefaultValue = "100")]
public int? OrderNo { get; set; } = 100;
/// <summary>
/// 状态
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "状态")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
}