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.
57 lines
1.9 KiB
C#
57 lines
1.9 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_column_set", "租户列表字段设置")]
|
|
public class CodeColumnSet : BaseOrgModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 权限Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "权限Id", IsNullable = false)]
|
|
public long? PermissionId { get; set; }
|
|
/// <summary>
|
|
/// 列表序号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "列表序号", IsNullable = false, DefaultValue = "0")]
|
|
public int ColumnNo { get; set; } = 0;
|
|
/// <summary>
|
|
/// 权限模块名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "权限模块名称", IsNullable = false, Length = 50)]
|
|
public string PermissionName { 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;
|
|
} |