mh_sms/APT.BaseData.Domain/Entities/PF/T_PF_CLIENT_SCOPES.cs
2024-04-12 16:50:28 +08:00

30 lines
699 B
C#

using APT.Infrastructure.Core;
using System;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities
{
[Description("资源表")]
public partial class T_PF_CLIENT_SCOPES : MesEntityBase
{
[DataFieldForeignKey("Nav_Scope")]
[Description("资源ID")]
public Guid SCOPE_ID { get; set; }
[DataFieldForeignKey("Nav_DataChanel", "Nav_ClientScopes")]
[Description("通道ID")]
public Guid DATA_CHANNEL_ID { get; set; }
[Description("导航:资源表")]
public T_PF_SCOPES Nav_Scope { get; set; }
[Description("导航:资源表")]
public T_PF_DATA_CHANNEL Nav_DataChanel { get; set; }
}
}