popedom.cs
资源名称:OASystem.rar [点击查看]
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:2k
源码类别:
OA系统
开发平台:
C#
- // ===================================================================
- // 实体(COM.OA.Entity)项目
- //====================================================================
- // wangyp @Copy Right 2006-2008
- // 文件popedom.cs
- // 项目名称:工程项目管理
- // 创建时间:2008-9-23
- // 负责人:wangyp
- // ===================================================================
- using System;
- using System.Collections.Generic;
- namespace COM.OA.Entity
- {
- /// <summary>
- ///
- /// </summary>
- [Serializable]
- public class popedom
- {
- #region 变量定义
- ///<summary>
- ///权限id
- ///</summary>
- private int _pop_id;
- ///<summary>
- ///权限
- ///</summary>
- private string _pop_popedom = String.Empty;
- ///<summary>
- ///
- ///</summary>
- private IList<operate> _operate = null;
- #endregion
- #region 构造函数
- ///<summary>
- ///
- ///</summary>
- public popedom()
- {
- }
- ///<summary>
- ///
- ///</summary>
- public popedom
- (
- int pop_id,
- string pop_popedom
- )
- {
- _pop_id = pop_id;
- _pop_popedom = pop_popedom;
- }
- #endregion
- #region 公共属性
- ///<summary>
- ///权限id
- ///</summary>
- public int pop_id
- {
- get { return _pop_id; }
- set { _pop_id = value; }
- }
- ///<summary>
- ///权限
- ///</summary>
- public string pop_popedom
- {
- get { return _pop_popedom; }
- set { _pop_popedom = value; }
- }
- ///<summary>
- ///
- ///</summary>
- public IList<operate> operate
- {
- get { return _operate; }
- set { _operate = value; }
- }
- #endregion
- }
- }