67 lines
1.5 KiB
C#
Raw Normal View History

2025-12-17 11:12:13 +08:00
using YD_Event.Core.Enum;
2025-12-17 10:32:52 +08:00
2025-12-17 11:12:13 +08:00
namespace YD_Event.Core.Entities;
2025-12-17 10:32:52 +08:00
/// <summary>
/// 自定义配置
/// </summary>
public class CustomConfig : Entity<long>, IAvailability, ICreatedUserId, ISoftDelete, ICreatedTime
{
/// <summary>
/// 配置名称
/// </summary>
[SugarColumn(Length = 32)]
public string Name { get; set; }
/// <summary>
/// 配置唯一编码(类名)
/// </summary>
[SugarColumn(Length = 32)]
public string Code { get; set; }
/// <summary>
/// 是否是多项(集合)
/// </summary>
public bool IsMultiple { get; set; }
/// <summary>
/// 配置界面设计json
/// </summary>
[SugarColumn(ColumnDataType = "text")]
public string? Json { get; set; }
/// <summary>
/// 是否允许创建实体
/// </summary>
public bool AllowCreationEntity { get; set; }
/// <summary>
/// 是否已生成实体
/// </summary>
public bool IsGenerate { get; set; }
/// <summary>
/// 可用状态
/// </summary>
public AvailabilityStatus Status { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(Length = 256)]
public string? Remark { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreatedUserId { get; set; }
/// <summary>
/// 标记删除
/// </summary>
public bool DeleteMark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreatedTime { get; set; }
}