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