WFActInsInfo.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:3k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace com.etong.Model
  5. {
  6.     public class WFActInsInfo
  7.     {
  8.         private int actinsid;
  9.         private int activityid;
  10.         private DateTime createdate;
  11.         private DateTime realenddate;
  12.         private int status;
  13.         private DateTime theoryenddate;
  14.         private int wfinstanceid;
  15.         private string blockreason;
  16.         private int userid;
  17.         private int roleid;
  18.         public WFActInsInfo()
  19.         {
  20.         }
  21.         public WFActInsInfo(int actinsid,int activityid,DateTime createdate,DateTime realenddate,int status,DateTime theoryenddate,
  22.                               int wfinstanceid,string blockreason,int userid,int roleid)
  23.            {
  24.                this.actinsid=actinsid;
  25.             this.activityid=activityid;
  26.             this.createdate=createdate;
  27.             this.realenddate=realenddate;
  28.             this.status=status;
  29.             this.theoryenddate=theoryenddate;
  30.             this.wfinstanceid=wfinstanceid;
  31.             this.blockreason=blockreason;
  32.             this.userid=userid;
  33.             this.roleid=roleid;
  34.                            
  35.           }
  36.         
  37.         public int ActInsID
  38.           {
  39.               get { return this.actinsid; }
  40.               set { this.actinsid= value; }
  41.           }
  42.         public int ActivityID
  43.           {
  44.               get { return this.activityid; }
  45.               set { this.activityid = value; }
  46.           }
  47.         public DateTime CreateDate
  48.         {
  49.             get { return this.createdate; }
  50.             set { this.createdate = value; }
  51.         }
  52.          public DateTime RealEndDate
  53.         {
  54.             get { return this.realenddate; }
  55.             set { this.realenddate = value; }
  56.         }
  57.         public int Status
  58.           {
  59.               get { return this.status; }
  60.               set { this.status = value; }
  61.           }
  62.     
  63.           public DateTime TheoryEndDate
  64.         {
  65.             get { return this.theoryenddate; }
  66.             set { this.theoryenddate = value; }
  67.         }
  68.         public int WfInstanceID
  69.           {
  70.               get { return this.wfinstanceid; }
  71.               set { this.wfinstanceid = value; }
  72.           }
  73.           public string BlockReason
  74.           {
  75.               get { return this.blockreason; }
  76.               set { this.blockreason = value; }
  77.           }
  78.          public int UserID
  79.           {
  80.               get { return this.userid; }
  81.               set { this.userid = value; }
  82.           }
  83.           public int RoleID
  84.           {
  85.               get { return this.roleid; }
  86.               set { this.roleid = value; }
  87.           }
  88.     }
  89. }