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.
35 lines
917 B
35 lines
917 B
using System;
|
|
using System.Data;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.Entity.Sys.Entity
|
|
{
|
|
/// </summary>
|
|
/// 用户委托权限信息表
|
|
/// 作 者:李炳海
|
|
/// 编写日期:2015年01月07日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QM_ENTRUSTAUTHORITY")]
|
|
public class T_QM_ENTRUSTAUTHORITY
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///委托主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "ENTRUSTPID", DataType = DbType.String)]
|
|
public string ENTRUSTPID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///权限编号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "AUTHORITYID", DataType = DbType.String)]
|
|
public string AUTHORITYID { get; set; }
|
|
|
|
}
|
|
}
|
|
|