WFInstanceInfo.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 WFInstanceInfo
  7.     {
  8.         private int wfinstanceid;  
  9.     private DateTime createdate;
  10.     private  int createuserid;
  11.         private int targetroleid;
  12.     private int  clientid;
  13.     private DateTime realenddate;
  14.     private int status;
  15.     private DateTime theoryenddate;
  16.     private int workflowid;
  17.         private int prjid;
  18.         public WFInstanceInfo()
  19.         {
  20.         }
  21.         public WFInstanceInfo(int wfinstanceid, DateTime createdate, int createuserid, int targetroleid, int clientid, DateTime realenddate,
  22.                                                                       int status,DateTime theoryenddate,int workflowid,int prjid)
  23.            {
  24.             this.wfinstanceid = wfinstanceid;
  25.             this.createdate = createdate;
  26.             this.createuserid = createuserid;
  27.             this.targetroleid = targetroleid;
  28.             this.clientid = clientid;
  29.             this.realenddate = realenddate;
  30.             this.status = status;
  31.             this.theoryenddate = theoryenddate;
  32.             this.workflowid = workflowid;
  33.             this.prjid = prjid;
  34.           }
  35.          public int WFInstanceID
  36.           {
  37.               get { return this.wfinstanceid; }
  38.               set { this.wfinstanceid = value; }
  39.           }
  40.          public DateTime CreateDate
  41.           {
  42.               get { return this.createdate; }
  43.               set { this.createdate = value; }
  44.           }
  45.          public int CreateUserID
  46.           {
  47.               get { return this.createuserid; }
  48.               set { this.createuserid = value; }
  49.           }
  50.         public int TargetRoleID
  51.           {
  52.               get { return this.targetroleid; }
  53.               set { this.targetroleid = value; }
  54.           }
  55.          public int ClientID
  56.         {
  57.             get { return this.clientid; }
  58.             set { this.clientid = value; }
  59.         }
  60.          public DateTime RealEndDate
  61.         {
  62.             get { return this.realenddate; }
  63.             set { this.realenddate = value; }
  64.         }
  65.          public int Status
  66.         {
  67.             get { return this.status; }
  68.             set { this.status = value; }
  69.         }
  70.         public DateTime TheoryEndDate
  71.          {
  72.              get { return this.theoryenddate; }
  73.              set { this.theoryenddate = value; }
  74.          }
  75.         public int WorkflowID
  76.          {
  77.              get { return this.workflowid; }
  78.              set { this.workflowid = value; }
  79.          }
  80.         public int PrjID
  81.          {
  82.              get { return this.prjid; }
  83.              set { this.prjid = value; }
  84.          }
  85.     }
  86. }