- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace com.etong.Model
- {
- public class WFActInsInfo
- {
- private int actinsid;
- private int activityid;
- private DateTime createdate;
- private DateTime realenddate;
- private int status;
- private DateTime theoryenddate;
- private int wfinstanceid;
- private string blockreason;
- private int userid;
- private int roleid;
- public WFActInsInfo()
- {
- }
- public WFActInsInfo(int actinsid,int activityid,DateTime createdate,DateTime realenddate,int status,DateTime theoryenddate,
- int wfinstanceid,string blockreason,int userid,int roleid)
- {
- this.actinsid=actinsid;
- this.activityid=activityid;
- this.createdate=createdate;
- this.realenddate=realenddate;
- this.status=status;
- this.theoryenddate=theoryenddate;
- this.wfinstanceid=wfinstanceid;
- this.blockreason=blockreason;
- this.userid=userid;
- this.roleid=roleid;
- }
- public int ActInsID
- {
- get { return this.actinsid; }
- set { this.actinsid= value; }
- }
- public int ActivityID
- {
- get { return this.activityid; }
- set { this.activityid = value; }
- }
- public DateTime CreateDate
- {
- get { return this.createdate; }
- set { this.createdate = 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 WfInstanceID
- {
- get { return this.wfinstanceid; }
- set { this.wfinstanceid = value; }
- }
- public string BlockReason
- {
- get { return this.blockreason; }
- set { this.blockreason = value; }
- }
- public int UserID
- {
- get { return this.userid; }
- set { this.userid = value; }
- }
- public int RoleID
- {
- get { return this.roleid; }
- set { this.roleid = value; }
- }
- }
- }