Files
tnb.server/visualdev/Tnb.VisualDev.Entitys/Entity/VisualDevModelDataEntity.cs
2024-04-23 10:16:16 +08:00

40 lines
1001 B
C#
Raw Permalink 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.VisualDev.Entitys;
/// <summary>
/// 可视化开发功能实体
/// 版 本V2.6.200612
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2020-10-28.
/// </summary>
[SugarTable("BASE_VISUALDEV_MODELDATA")]
[Tenant(ClaimConst.TENANTID)]
public class VisualDevModelDataEntity : CLDEntityBase
{
/// <summary>
/// 功能ID.
/// </summary>
[SugarColumn(ColumnName = "F_VISUALDEVID")]
public string VisualDevId { get; set; }
/// <summary>
/// 排序码.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
/// <summary>
/// 区分主子表.
/// </summary>
[SugarColumn(ColumnName = "F_PARENTID")]
public string ParentId { get; set; }
/// <summary>
/// 数据包.
/// </summary>
[SugarColumn(ColumnName = "F_DATA")]
public string Data { get; set; }
}