You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
|
||
|
namespace QMAPP.Entity.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 菜单权限关联关系
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
[DBTable(TableName = "T_QM_POWERRELATION")]
|
||
|
public class PowerRelation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
[DBColumn(ColumnName = "ID", DataType = DbType.String, IsKey = true)]
|
||
|
public string ID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 拥有者主键
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
[DBColumn(ColumnName = "OWNERID", DataType = DbType.String, IsKey = true)]
|
||
|
public string OwnerID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限主键
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
[DBColumn(ColumnName = "POWERID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PowerID { get; set; }
|
||
|
}
|
||
|
}
|