WFInstanceInfo.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:3k
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace com.etong.Model
- {
- public class WFInstanceInfo
- {
- private int wfinstanceid;
- private DateTime createdate;
- private int createuserid;
- private int targetroleid;
- private int clientid;
- private DateTime realenddate;
- private int status;
- private DateTime theoryenddate;
- private int workflowid;
- private int prjid;
- public WFInstanceInfo()
- {
- }
- public WFInstanceInfo(int wfinstanceid, DateTime createdate, int createuserid, int targetroleid, int clientid, DateTime realenddate,
- int status,DateTime theoryenddate,int workflowid,int prjid)
- {
- this.wfinstanceid = wfinstanceid;
- this.createdate = createdate;
- this.createuserid = createuserid;
- this.targetroleid = targetroleid;
- this.clientid = clientid;
- this.realenddate = realenddate;
- this.status = status;
- this.theoryenddate = theoryenddate;
- this.workflowid = workflowid;
- this.prjid = prjid;
- }
- public int WFInstanceID
- {
- get { return this.wfinstanceid; }
- set { this.wfinstanceid = value; }
- }
- public DateTime CreateDate
- {
- get { return this.createdate; }
- set { this.createdate = value; }
- }
- public int CreateUserID
- {
- get { return this.createuserid; }
- set { this.createuserid = value; }
- }
- public int TargetRoleID
- {
- get { return this.targetroleid; }
- set { this.targetroleid = value; }
- }
- public int ClientID
- {
- get { return this.clientid; }
- set { this.clientid = value; }
- }
- public DateTime RealEndDate
- {
- get { return this.realenddate; }
- set { this.realenddate = value; }
- }
- public int Status
- {
- get { return this.status; }
- set { this.status = value; }
- }
- public DateTime TheoryEndDate
- {
- get { return this.theoryenddate; }
- set { this.theoryenddate = value; }
- }
- public int WorkflowID
- {
- get { return this.workflowid; }
- set { this.workflowid = value; }
- }
- public int PrjID
- {
- get { return this.prjid; }
- set { this.prjid = value; }
- }
- }
- }