news.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:4k
源码类别:

OA系统

开发平台:

C#

  1. // =================================================================== 
  2. // 实体(COM.OA.Entity)项目
  3. //====================================================================
  4. // wangyp @Copy Right 2006-2008
  5. // 文件news.cs
  6. // 项目名称:工程项目管理
  7. // 创建时间:2008-9-23
  8. // 负责人:wangyp
  9. // ===================================================================
  10. using System;
  11. using System.Collections.Generic;
  12. namespace COM.OA.Entity
  13. {
  14.     /// <summary>
  15.     ///
  16.     /// </summary>
  17.     [Serializable]
  18.     public class news
  19.     {
  20.         #region 变量定义
  21.         ///<summary>
  22.         ///新闻id
  23.         ///</summary>
  24.         private int _n_id;
  25.         ///<summary>
  26.         ///新闻标题
  27.         ///</summary>
  28.         private string _n_title = String.Empty;
  29.         ///<summary>
  30.         ///新闻内容
  31.         ///</summary>
  32.         private string _n_content = String.Empty;
  33.         ///<summary>
  34.         ///部门id(外键)
  35.         ///</summary>
  36.         private int _n_dept_id;
  37.         ///<summary>
  38.         ///发布人id(外键)
  39.         ///</summary>
  40.         private int _n_u_id;
  41.         ///<summary>
  42.         ///发布时间
  43.         ///</summary>
  44.         private DateTime _n_releasetime;
  45.         ///<summary>
  46.         ///状态
  47.         ///</summary>
  48.         private int _n_state;
  49.         ///<summary>
  50.         ///
  51.         ///</summary>
  52.         private users _users = null;
  53.         ///<summary>
  54.         ///
  55.         ///</summary>
  56.         private department _department = null;
  57.         #endregion
  58.         #region 构造函数
  59.         ///<summary>
  60.         ///
  61.         ///</summary>
  62.         public news()
  63.         {
  64.         }
  65.         ///<summary>
  66.         ///
  67.         ///</summary>
  68.         public news
  69.         (
  70.             int n_id,
  71.             string n_title,
  72.             string n_content,
  73.             int n_dept_id,
  74.             int n_u_id,
  75.             DateTime n_releasetime,
  76.             int n_state
  77.         )
  78.         {
  79.             _n_id = n_id;
  80.             _n_title = n_title;
  81.             _n_content = n_content;
  82.             _n_dept_id = n_dept_id;
  83.             _n_u_id = n_u_id;
  84.             _n_releasetime = n_releasetime;
  85.             _n_state = n_state;
  86.         }
  87.         #endregion
  88.         #region 公共属性
  89.         ///<summary>
  90.         ///新闻id
  91.         ///</summary>
  92.         public int n_id
  93.         {
  94.             get { return _n_id; }
  95.             set { _n_id = value; }
  96.         }
  97.         ///<summary>
  98.         ///新闻标题
  99.         ///</summary>
  100.         public string n_title
  101.         {
  102.             get { return _n_title; }
  103.             set { _n_title = value; }
  104.         }
  105.         ///<summary>
  106.         ///新闻内容
  107.         ///</summary>
  108.         public string n_content
  109.         {
  110.             get { return _n_content; }
  111.             set { _n_content = value; }
  112.         }
  113.         ///<summary>
  114.         ///部门id(外键)
  115.         ///</summary>
  116.         public int n_dept_id
  117.         {
  118.             get { return _n_dept_id; }
  119.             set { _n_dept_id = value; }
  120.         }
  121.         ///<summary>
  122.         ///发布人id(外键)
  123.         ///</summary>
  124.         public int n_u_id
  125.         {
  126.             get { return _n_u_id; }
  127.             set { _n_u_id = value; }
  128.         }
  129.         ///<summary>
  130.         ///发布时间
  131.         ///</summary>
  132.         public DateTime n_releasetime
  133.         {
  134.             get { return _n_releasetime; }
  135.             set { _n_releasetime = value; }
  136.         }
  137.         ///<summary>
  138.         ///状态
  139.         ///</summary>
  140.         public int n_state
  141.         {
  142.             get { return _n_state; }
  143.             set { _n_state = value; }
  144.         }
  145.         ///<summary>
  146.         ///
  147.         ///</summary>
  148.         public users users
  149.         {
  150.             get { return _users; }
  151.             set { _users = value; }
  152.         }
  153.         ///<summary>
  154.         ///
  155.         ///</summary>
  156.         public department department
  157.         {
  158.             get { return _department; }
  159.             set { _department = value; }
  160.         }
  161.         #endregion
  162.     }
  163. }