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.
57 lines
1.6 KiB
57 lines
1.6 KiB
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
namespace QMAPP.Entity.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 组织机构权限信息
|
||
|
/// 创建者:郭佳伟
|
||
|
/// 创建日期:2012.02.17
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DBTable(TableName = "T_QM_ORGAIZATIONAUTHORITY")]
|
||
|
public class OrgaizationAuthority : BaseEntity
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 组织机构编号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "ORGAID", DataType = DbType.String)]
|
||
|
public string OrgaID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 权限编号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "AUTHORITYID", DataType = DbType.String)]
|
||
|
public string AuthorityID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CREATETIME", DataType = DbType.DateTime,DefaultValue=DataDefaultValue.SysDate)]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
||
|
public string CreateUser { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "UPDATETIME", DataType = DbType.DateTime)]
|
||
|
public DateTime UpdateTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新人
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
||
|
public string UpdateUser { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|