Files
tnb.server/system/Tnb.Systems.Entitys/Entity/Permission/SignImgEntity.cs
2023-03-13 15:00:34 +08:00

43 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.Entity.Permission;
/// <summary>
/// 用户签名类.
/// </summary>
[SugarTable("BASE_SIGNIMG")]
public class SignImgEntity : CLEntityBase
{
/// <summary>
/// 签名.
/// </summary>
[SugarColumn(ColumnName = "F_SIGNIMG")]
public string SignImg { get; set; }
/// <summary>
/// 是否默认(0:否1是).
/// </summary>
[SugarColumn(ColumnName = "F_ISDEFAULT")]
public int? IsDefault { get; set; }
/// <summary>
/// 获取或设置 删除标志.
/// </summary>
[SugarColumn(ColumnName = "F_DeleteMark", ColumnDescription = "删除标志")]
public int? DeleteMark { get; set; }
/// <summary>
/// 获取或设置 删除时间.
/// </summary>
[SugarColumn(ColumnName = "F_DeleteTime", ColumnDescription = "删除时间")]
public DateTime? DeleteTime { get; set; }
/// <summary>
/// 获取或设置 删除用户.
/// </summary>
[SugarColumn(ColumnName = "F_DeleteUserId", ColumnDescription = "删除用户")]
public string DeleteUserId { get; set; }
}