Model.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:36k
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace com.etong.Model
- {
- #region 角色信息组件
- public class RoleInfo
- {
- private int roleid;
- private string rolename;
- private string roledesc;
- private int ordinal;
- private int createrole;
- private int userrole;
- public RoleInfo()
- { }
- public RoleInfo(int roleid, string rolename, string roledesc, int ordinal, int createrole, int userrole)
- {
- this.roleid = roleid;
- this.rolename = rolename;
- this.roledesc = roledesc;
- this.ordinal = ordinal;
- this.createrole = createrole;
- this.userrole = userrole;
- }
- public int RoleID
- {
- get { return this.roleid; }
- set { this.roleid = value; }
- }
- public string RoleName
- {
- get { return this.rolename; }
- set { this.rolename = value; }
- }
- public string RoleDesc
- {
- get { return this.roledesc; }
- set { this.roledesc = value; }
- }
- public int OrdInal
- {
- get { return this.ordinal; }
- set { this.ordinal = value; }
- }
- public int CreateRole
- {
- get { return this.createrole; }
- set { this.createrole = value; }
- }
- public int UserRole
- {
- get { return this.userrole; }
- set { this.userrole = value; }
- }
- }
- #endregion
- #region 客户信息组件
- public class ClientInfo
- {
- public int clientid;
- private string clientworkunit;
- private string mateworkunit;
- private string number;
- private string clientnote;
- private string clientredience;
- private int clientdegreeid;
- private string clientbirthday;
- private string homeaddress;
- private string identitycard;
- private int clientmale;
- private int clientmarriage;
- private string clientname;
- private string clienttelnum;
- private decimal salary;
- private string matenote;
- private string materedience;
- private string matebirthday;
- private int matedegreeid;
- private string matehomeaddress;
- private string mateidentitycard;
- private int matemale;
- private string matename;
- private decimal matesalary;
- public ClientInfo()
- { }
- public ClientInfo(string clientworkunit, string mateworkunit,
- string number,
- string clientnote,
- string clientredience,
- int clientdegreeid,
- string clientbirthday,
- string homeaddress,
- string identitycard,
- int clientmale,
- int clientmarriage,
- string clientname,
- string clienttelnum,
- decimal salary,
- string matenote,
- string materedience,
- string matebirthday,
- int matedegreeid,
- string matehomeaddress,
- string mateidentitycard,
- int matemale,
- string matename,
- decimal matesalary)
- {
- this.clientworkunit = clientworkunit;
- this.mateworkunit = mateworkunit;
- this.number = number;
- this.clientnote = clientnote;
- this.clientredience = clientredience;
- this.clientdegreeid = clientdegreeid;
- this.clientbirthday = clientbirthday;
- this.homeaddress = homeaddress;
- this.identitycard = identitycard;
- this.clientmale = clientmale;
- this.clientname =clientname ;
- this.clienttelnum =clienttelnum ;
- this.salary =salary ;
- this.matenote =matenote ;
- this.materedience =materedience ;
- this.matebirthday =matebirthday ;
- this.matedegreeid =matedegreeid ;
- this.matehomeaddress =matehomeaddress ;
- this.mateidentitycard =mateidentitycard ;
- this.matemale =matemale ;
- this.matename =matename ;
- this.matesalary =matesalary ;
- }
- public ClientInfo(int clientid,string clientworkunit, string mateworkunit,
- string number,
- string clientnote,
- string clientredience,
- int clientdegreeid,
- string clientbirthday,
- string homeaddress,
- string identitycard,
- int clientmale,
- int clientmarriage,
- string clientname,
- string clienttelnum,
- decimal salary,
- string matenote,
- string materedience,
- string matebirthday,
- int matedegreeid,
- string matehomeaddress,
- string mateidentitycard,
- int matemale,
- string matename,
- decimal matesalary)
- {
- this.clientid =clientid ;
- this.clientworkunit = clientworkunit;
- this.mateworkunit = mateworkunit;
- this.number = number;
- this.clientnote = clientnote;
- this.clientredience = clientredience;
- this.clientdegreeid = clientdegreeid;
- this.clientbirthday = clientbirthday;
- this.homeaddress = homeaddress;
- this.identitycard = identitycard;
- this.clientmale = clientmale;
- this.clientname =clientname ;
- this.clienttelnum =clienttelnum ;
- this.salary =salary ;
- this.matenote =matenote ;
- this.materedience =materedience ;
- this.matebirthday =matebirthday ;
- this.matedegreeid =matedegreeid ;
- this.matehomeaddress =matehomeaddress ;
- this.mateidentitycard =mateidentitycard ;
- this.matemale =matemale ;
- this.matename =matename ;
- this.matesalary =matesalary ;
- }
- public int ClientID
- {
- get { return this.clientid; }
- }
- public string ClientWorkUnit
- {
- get { return this.clientworkunit; }
- set { this.clientworkunit = value; }
- }
- public string MateWorkUnit
- {
- get { return this.mateworkunit; }
- set { this.mateworkunit = value; }
- }
- public string Number
- {
- get { return this.number; }
- set { this.number = value; }
- }
- public string ClientNote
- {
- get { return this.clientnote; }
- set { this.clientnote = value; }
- }
- public string ClientRedience
- {
- get { return this.clientredience; }
- set { this.clientredience = value; }
- }
- public int ClientDegreeID
- {
- get { return this.clientdegreeid; }
- set { this.clientdegreeid = value; }
- }
- public string ClientBirthday
- {
- get { return this.clientbirthday; }
- set { this.clientbirthday = value; }
- }
- public string HomeAddress
- {
- get { return this.homeaddress; }
- set { this.homeaddress = value; }
- }
- public string IdentityCard
- {
- get { return this.identitycard; }
- set { this.identitycard = value; }
- }
- public int ClientMale
- {
- get { return this.clientmale; }
- set { this.clientmale = value; }
- }
- public int ClientMarriage
- {
- get { return this.clientmarriage; }
- set { this.clientmarriage = value; }
- }
- public string ClientName
- {
- get { return this.clientname; }
- set { this.clientname = value; }
- }
- public string ClientTelNum
- {
- get { return this.clienttelnum; }
- set { this.clienttelnum = value; }
- }
- public decimal Salary
- {
- get { return this.salary; }
- set { this.salary = value; }
- }
- public string MateNote
- {
- get { return this.matenote; }
- set { this.matenote = value; }
- }
- public string MateRedience
- {
- get { return this.materedience; }
- set { this.materedience = value; }
- }
- public string MateBirthday
- {
- get { return this.matebirthday; }
- set { this.matebirthday = value; }
- }
- public int MateDegreeID
- {
- get { return this.matedegreeid; }
- set { this.matedegreeid = value; }
- }
- public string MateHomeAddress
- {
- get { return this.matehomeaddress; }
- set { this.matehomeaddress = value; }
- }
- public string MateIdentityCard
- {
- get { return this.mateidentitycard; }
- set { this.mateidentitycard = value; }
- }
- public int MateMale
- {
- get { return this.matemale; }
- set { this.matemale = value; }
- }
- public string MateName
- {
- get { return this.matename; }
- set { this.matename = value; }
- }
- public decimal MateSalary
- {
- get { return this.matesalary; }
- set { this.matesalary = value; }
- }
- }
- #endregion
- #region 项目施工信息组件
- public class ConstructInfo
- {
- private int conid;
- private string conname;
- private string consort;
- private string jcKgName;
- private string jcWZTransator;
- private string jcWZName;
- private string wzTransator;
- private string wzName;
- private string jcZTransator;
- private string jcZName;
- private string zgJdTransator;
- private string zgJdIdea;
- private string zgXdTransator;
- private string zgXdIdea;
- private string jcSBTransator;
- private string jcSBFName;
- private string zgHzTransator;
- private string zgHzFName;
- private string gcglTransator;
- private string gcglName;
- private string jcSJTranstor;
- private string jcSJFName;
- private string wZFjTransator;
- private string wZFjName;
- private int status;
- private string documentxml;
- public ConstructInfo()
- { }
- public ConstructInfo( int conid,
- string conname,
- string consort,
- string jcKgName,
- string jcWZTransator,
- string jcWZName,
- string wzTransator,
- string wzName,
- string jcZTransator,
- string jcZName,
- string zgJdTransator,
- string zgJdIdea,
- string zgXdTransator,
- string zgXdIdea,
- string jcSBTransator,
- string jcSBFName,
- string zgHzTransator,
- string zgHzFName,
- string gcglTransator,
- string gcglName,
- string jcSJTranstor,
- string jcSJFName,
- string wZFjTransator,
- string wZFjName,
- int status,
- string documentxml
- )
- {
- this.conid = conid;
- this.conname = conname;
- this.consort = consort;
- this.jcKgName = jcKgName;
- this.jcWZTransator = jcWZTransator;
- this.jcWZName = jcWZName;
- this.wzTransator = wzTransator;
- this.wzName = wzName;
- this.jcZTransator = jcZTransator;
- this.jcZName = jcZName;
- this.zgJdTransator = zgJdTransator;
- this.zgJdIdea = zgJdIdea;
- this.zgXdTransator = zgXdTransator;
- this.zgXdIdea = zgXdIdea;
- this.jcSBTransator = jcSBTransator;
- this.jcSBFName = jcSBFName;
- this.zgHzTransator = zgHzTransator;
- this.zgHzFName = zgHzFName;
- this.gcglTransator = gcglTransator;
- this.gcglName = gcglName;
- this.jcSJTranstor = jcSJTranstor;
- this.jcSJFName = jcSJFName;
- this.wZFjTransator = wZFjTransator;
- this.wZFjName = wZFjName;
- this.status = status;
- this.documentxml = documentxml;
- }
- public ConstructInfo(
- string conname,
- string consort,
- string jcKgName,
- string jcWZTransator,
- string jcWZName,
- string wzTransator,
- string wzName,
- string jcZTransator,
- string jcZName,
- string zgJdTransator,
- string zgJdIdea,
- string zgXdTransator,
- string zgXdIdea,
- string jcSBTransator,
- string jcSBFName,
- string zgHzTransator,
- string zgHzFName,
- string gcglTransator,
- string gcglName,
- string jcSJTranstor,
- string jcSJFName,
- string wZFjTransator,
- string wZFjName,
- int status,
- string documentxml)
- {
- this.conname = conname;
- this.consort = consort;
- this.jcKgName = jcKgName;
- this.jcWZTransator = jcWZTransator;
- this.jcWZName = jcWZName;
- this.wzTransator = wzTransator;
- this.wzName = wzName;
- this.jcZTransator = jcZTransator;
- this.jcZName = jcZName;
- this.zgJdTransator = zgJdTransator;
- this.zgJdIdea = zgJdIdea;
- this.zgXdTransator = zgXdTransator;
- this.zgXdIdea = zgXdIdea;
- this.jcSBTransator = jcSBTransator;
- this.jcSBFName = jcSBFName;
- this.zgHzTransator = zgHzTransator;
- this.zgHzFName = zgHzFName;
- this.gcglTransator = gcglTransator;
- this.gcglName = gcglName;
- this.jcSJTranstor = jcSJTranstor;
- this.jcSJFName = jcSJFName;
- this.wZFjTransator = wZFjTransator;
- this.wZFjName = wZFjName;
- this.status = status;
- this.documentxml = documentxml;
- }
- public int Conid
- {
- get { return this.conid; }
- }
- public string Conname
- {
- get { return this.conname; }
- set { this.conname = value; }
- }
- public string Consort
- {
- get { return this.consort; }
- set { this.consort = value; }
- }
- public string JcKgName
- {
- get { return this.jcKgName; }
- set { this.jcKgName = value; }
- }
- public string JcWZTransator
- {
- get { return this.jcWZTransator;}
- set { this.jcWZTransator = value; }
- }
- public string JcWZName
- {
- get { return this.jcWZName; }
- set { this.jcWZName = value; }
- }
- public string WzTransator
- {
- get { return this.wzTransator; }
- set { this.wzTransator = value; }
- }
- public string WzName
- {
- get { return this.wzName; }
- set { this.wzName = value; }
- }
- public string JcZTransator
- {
- get { return this.jcZTransator; }
- set { this.jcZTransator = value; }
- }
- public string JcZName
- {
- get { return this.jcZName; }
- set { this.jcZName = value; }
- }
- public string ZgJdTransator
- {
- get { return this.zgJdTransator; }
- set { this.zgJdTransator = value; }
- }
- public string ZgJdIdea
- {
- get { return this.zgJdIdea; }
- set { this.zgJdIdea = value; }
- }
- public string ZgXdTransator
- {
- get { return this.zgXdTransator; }
- set { this.zgXdTransator = value; }
- }
- public string ZgXdIdea
- {
- get { return this.zgXdIdea; }
- set { this.zgXdIdea=value ;}
- }
- public string JcSBTransator
- {
- get { return this.jcSBTransator; }
- set { this.jcSBTransator = value; }
- }
- public string JcSBFName
- {
- get { return this.jcSBFName; }
- set { this.jcSBFName = value; }
- }
- public string ZgHzTransator
- {
- get { return this.zgHzTransator; }
- set { this.zgHzTransator = value; }
- }
- public string ZgHzFName
- {
- get { return this.zgHzFName; }
- set { this.zgHzFName = value; }
- }
- public string GcglTransator
- {
- get { return this.gcglTransator; }
- set { this.gcglTransator = value; }
- }
- public string GcglName
- {
- get { return this.gcglName; }
- set { this.gcglName = value; }
- }
- public string JcSJTranstor
- {
- get { return this.jcSJTranstor; }
- set { this.jcSJTranstor = value; }
- }
- public string JcSJFName
- {
- get { return this.jcSJFName; }
- set { this.jcSJFName = value; }
- }
- public string WZFjTransator
- {
- get { return this.wZFjTransator; }
- set { this.wZFjTransator = value; }
- }
- public string WZFjName
- {
- get { return this.wZFjName; }
- set { this.wZFjName = value; }
- }
- public int Status
- {
- get { return this.status; }
- set { this.status = value; }
- }
- public string DocumentXML
- {
- get { return this.documentxml; }
- set { this.documentxml = value; }
- }
- }
- #endregion
- #region 废旧物资管理流程组件
- public class PrjOldMatInfo
- {
- private int matid;//废旧物资管理表ID
- private int conid;//施工ID
- private int consort;//施工类型
- // private string matname;//废旧物资管理名称
- private int matsort;//物资种类
- private string nf;//年份
- private string jd;//季度
- private string hz;//是否汇总
- private string jcTransactor;//基层单位上报人和时间
- private string zgTransactor;//主管部门汇总各单位废旧物资人
- private string zgHZFName;//汇总表名称
- private string zGxFName;//小件汇总表
- private string zGdFName;//大件汇总表
- private string wZjTransactor;//物资集中审核人
- private string wZjIdea;//物资集中审核人意见
- private string wZhTransactor;//物资汇总人
- private string wZhFName;//物资汇总表
- private string wZqTransactor;//物资编写废旧物资人
- private string wZqFName;//物资废旧清单
- private string gcglTransactor;//工程管理人
- private string gcglIdea;//工程管理人意见
- private string gSldTansactor;//公司领导人
- private string gSldIdea;//公司领导人意见
- private string wZfTransactor;//物资废旧物资处理人
- private string wZfIdea;//物资废旧物资处理人意见
- private string zGgTransactor;//主管资料保存人
- private string zGgIdea;//主管资料保存人意见
- private int status;//状态标志
- public PrjOldMatInfo( int matid,//废旧物资管理表ID
- int conid,//施工ID
- int consort,//施工类型
- // string matname,//废旧物资管理名称
- int matsort,//物资种类
- string nf,//年份
- string jd,//季度
- string hz,//是否汇总
- string jcTransactor,//基层单位上报人和时间
- string zgTransactor,//主管部门汇总各单位废旧物资人
- string zgHZFName,//汇总表名称
- string zGxFName,//小件汇总表
- string zGdFName,//大件汇总表
- string wZjTransactor,//物资集中审核人
- string wZjIdea,//物资集中审核人意见
- string wZhTransactor,//物资汇总人
- string wZhFName,//物资汇总表
- string wZqTransactor,//物资编写废旧物资人
- string wZqFName,//物资废旧清单
- string gcglTransactor,//工程管理人
- string gcglIdea,//工程管理人意见
- string gSldTansactor,//公司领导人
- string gSldIdea,//公司领导人意见
- string wZfTransactor,//物资废旧物资处理人
- string wZfIdea,//物资废旧物资处理人意见
- string zGgTransactor,//主管资料保存人
- string zGgIdea,//主管资料保存人意见
- int status)//状态标志)
- {
- this.matid = matid;
- this.conid = conid;
- this.consort = consort;
- // this.matname = matname;
- this.matsort = matsort;
- this.nf = nf;
- this.jd = jd;
- this.hz = hz;
- this.jcTransactor = jcTransactor;
- this.zgTransactor = zgTransactor;
- this.zgHZFName = zgHZFName;
- this.zGxFName = zGxFName;
- this.zGdFName = zGdFName;
- this.wZjTransactor = wZjTransactor;
- this.wZjIdea = wZjIdea;
- this.wZhTransactor = wZhTransactor;
- this.wZhFName = wZhFName;
- this.wZqTransactor = wZqTransactor;
- this.wZqFName = wZqFName;
- this.gcglTransactor = gcglTransactor;
- this.gcglIdea = gcglIdea;
- this.gSldTansactor = gSldTansactor;
- this.gSldIdea = gSldIdea;
- this.wZfTransactor = wZfTransactor;
- this.wZfIdea = wZfIdea;
- this.zGgTransactor = zGgTransactor;
- this.zGgIdea = zGgIdea;
- this.status = status;
- }
- public PrjOldMatInfo(
- int conid,//施工ID
- int consort,//施工类型
- // string matname,//废旧物资管理名称
- int matsort,//物资种类
- string nf,//年份
- string jd,//季度
- string hz,//是否汇总
- string jcTransactor,//基层单位上报人和时间
- string zgTransactor,//主管部门汇总各单位废旧物资人
- string zgHZFName,//汇总表名称
- string zGxFName,//小件汇总表
- string zGdFName,//大件汇总表
- string wZjTransactor,//物资集中审核人
- string wZjIdea,//物资集中审核人意见
- string wZhTransactor,//物资汇总人
- string wZhFName,//物资汇总表
- string wZqTransactor,//物资编写废旧物资人
- string wZqFName,//物资废旧清单
- string gcglTransactor,//工程管理人
- string gcglIdea,//工程管理人意见
- string gSldTansactor,//公司领导人
- string gSldIdea,//公司领导人意见
- string wZfTransactor,//物资废旧物资处理人
- string wZfIdea,//物资废旧物资处理人意见
- string zGgTransactor,//主管资料保存人
- string zGgIdea,//主管资料保存人意见
- int status)//状态标志)
- {
- this.conid = conid;
- this.consort = consort;
- // this.matname = matname;
- this.matsort = matsort;
- this.nf = nf;
- this.jd = jd;
- this.hz = hz;
- this.jcTransactor = jcTransactor;
- this.zgTransactor = zgTransactor;
- this.zgHZFName = zgHZFName;
- this.zGxFName = zGxFName;
- this.zGdFName = zGdFName;
- this.wZjTransactor = wZjTransactor;
- this.wZjIdea = wZjIdea;
- this.wZhTransactor = wZhTransactor;
- this.wZhFName = wZhFName;
- this.wZqTransactor = wZqTransactor;
- this.wZqFName = wZqFName;
- this.gcglTransactor = gcglTransactor;
- this.gcglIdea = gcglIdea;
- this.gSldTansactor = gSldTansactor;
- this.gSldIdea = gSldIdea;
- this.wZfTransactor = wZfTransactor;
- this.wZfIdea = wZfIdea;
- this.zGgTransactor = zGgTransactor;
- this.zGgIdea = zGgIdea;
- this.status = status;
- }
- public int MatID
- {
- get { return this.matid; }
- }
- public int ConID
- {
- get { return this.conid; }
- set { this.conid = value; }
- }
- public int ConSort
- {
- get { return this.consort; }
- set { this.consort = value; }
- }
- //public string MatName
- //{
- // get { return this.matname; }
- // set { this.matname = value; }
- //}
- public int MatSort
- {
- get { return this.matsort; }
- set { this.matsort = value; }
- }
- public string NF
- {
- get { return this.nf; }
- set { this.nf = value; }
- }
- public string JD
- {
- get { return this.jd; }
- set { this.jd = value; }
- }
- public string HZ
- {
- get { return this.hz; }
- set { this.hz = value; }
- }
- public string JcTransactor//基层单位上报人和时间
- {
- get { return this.jcTransactor; }
- set { this.jcTransactor = value; }
- }
- public string ZgTransactor//主管部门汇总各单位废旧物资人
- {
- get { return this.zgTransactor; }
- set { this.zgTransactor = value; }
- }
- public string ZgHZFName//汇总表名称
- {
- get { return this.zgHZFName; }
- set { this.zgHZFName = value; }
- }
- public string ZGxFName//小件汇总表
- {
- get { return this.zGxFName; }
- set { this.zGxFName = value; }
- }
- public string ZGdFName//大件汇总表
- {
- get { return this.zGdFName; }
- set { this.zGdFName = value; }
- }
- public string WZjTransactor//物资集中审核人
- {
- get { return this.wZjTransactor; }
- set { this.wZjTransactor = value; }
- }
- public string WZjIdea//物资集中审核人意见
- {
- get { return this.wZjIdea; }
- set { this.wZjIdea = value; }
- }
- public string WZhTransactor//物资汇总人
- {
- get { return this.wZhTransactor; }
- set { this.wZhTransactor = value; }
- }
- public string WZhFName//物资汇总表
- {
- get { return this.wZhFName; }
- set { this.wZhFName = value; }
- }
- public string WZqTransactor//物资编写废旧物资人
- {
- get { return this.wZqTransactor; }
- set { this.wZqTransactor = value; }
- }
- public string WZqFName//物资废旧清单
- {
- get { return this.wZqFName; }
- set { this.wZqFName = value; }
- }
- public string GcglTransactor//工程管理人
- {
- get { return this.gcglTransactor; }
- set { this.gcglTransactor = value; }
- }
- public string GcglIdea//工程管理人意见
- {
- get { return this.gcglIdea; }
- set { this.gcglIdea = value; }
- }
- public string GSldTansactor//公司领导人
- {
- get { return this.gSldTansactor; }
- set { this.gSldTansactor = value; }
- }
- public string GSldIdea//公司领导人意见
- {
- get { return this.gSldIdea; }
- set { this.gSldIdea = value; }
- }
- public string WZfTransactor//物资废旧物资处理人
- {
- get { return this.wZfTransactor; }
- set { this.wZfTransactor = value; }
- }
- public string WZfIdea//物资废旧物资处理人意见
- {
- get { return this.wZfIdea; }
- set { this.wZfIdea = value; }
- }
- public string ZGgTransactor//主管资料保存人
- {
- get { return this.zGgTransactor; }
- set { this.zGgTransactor = value; }
- }
- public string ZGgIdea//主管资料保存人意见
- {
- get { return this.zGgIdea; }
- set { this.zGgIdea = value; }
- }
- public int Status//状态标志
- {
- get { return this.status; }
- set { this.status = value; }
- }
- }
- #endregion
- #region 废旧物资汇总表组件
- public class PrjOldMatHZInfo
- {
- private int matHzID;
- private string hz;
- private string nf;
- private string jd;
- private string matHZName;
- private string hzFName;
- private string wzTransactor;
- private string gcglTransactor;
- private string gcglIdea;
- private string fgTransactor;
- private string fgIdea;
- private string jcoTransactor;
- private string jcoIdea;
- private int status;
- public PrjOldMatHZInfo()
- { }
- public PrjOldMatHZInfo(string hz,
- string nf,
- string jd,
- string matHZName,
- string hzFName,
- string wzTransactor,
- string gcglTransactor,
- string gcglIdea,
- string fgTransactor,
- string fgIdea,
- string jcoTransactor,
- string jcoIdea,
- int status)
- {
- this.hz = hz;
- this.nf = nf;
- this.jd = jd;
- this.matHZName = matHZName;
- this.hzFName = hzFName;
- this.wzTransactor = wzTransactor;
- this.gcglTransactor = gcglTransactor;
- this.gcglIdea = gcglIdea;
- this.fgTransactor = fgTransactor;
- this.fgIdea = fgIdea;
- this.jcoTransactor = jcoTransactor;
- this.jcoIdea = jcoIdea;
- this.status = status;
- }
- public int MatHzID
- {
- get { return this.matHzID; }
- }
- public string HZ
- {
- get { return this.hz; }
- set { this.hz = value; }
- }
- public string NF
- {
- get { return this.nf; }
- set { this.nf = value; }
- }
- public string JD
- {
- get { return this.jd; }
- set { this.jd = value; }
- }
- public string MatHZName
- {
- get { return this.matHZName; }
- set { this.matHZName = value; }
- }
- public string HzFName
- {
- get { return this.hzFName; }
- set { this.hzFName = value; }
- }
- public string WzTransactor
- {
- get { return this.wzTransactor; }
- set { this.wzTransactor = value; }
- }
- public string GcglTransactor
- {
- get { return this.gcglTransactor; }
- set { this.gcglTransactor = value; }
- }
- public string GcglIdea
- {
- get { return this.gcglIdea; }
- set { this.gcglIdea = value; }
- }
- public string FgTransactor
- {
- get { return this.fgTransactor; }
- set { this.fgTransactor = value; }
- }
- public string FgIdea
- {
- get { return this.fgIdea; }
- set { this.fgIdea = value; }
- }
- public string JcoTransactor
- {
- get { return this.jcoTransactor; }
- set { this.jcoTransactor = value; }
- }
- public string JcoIdea
- {
- get { return this.jcoIdea; }
- set { this.jcoIdea = value; }
- }
- public int Status
- {
- get { return this.status; }
- set { this.status = value; }
- }
- }
- #endregion
- #region 项目施工工程变更和调整表
- public class PrjAlertInfo
- {
- private int alertid;
- private int conid;
- private string consort;
- private string alertname;
- private string bgfname;
- private string jctransactor;
- private string jcfname;
- private string zgtransactor;
- private string zgfname;
- private string gcgltransactor;
- private string gcglidea;
- private string fgtransactor;
- private string fgidea;
- private int status;
- public PrjAlertInfo(int conid,
- string consort,
- string alertname,
- string bgfname,
- string jctransactor,
- string jcfname,
- string zgtransactor,
- string zgfname,
- string gcgltransactor,
- string gcglidea,
- string fgtransactor,
- string fgidea,
- int status
- )
- {
- this.conid = conid;
- this.consort = consort;
- this.alertname = alertname;
- this.bgfname = bgfname;
- this.jctransactor = jctransactor;
- this.jcfname = jcfname;
- this.zgtransactor = zgtransactor;
- this.zgfname = zgfname;
- this.gcgltransactor = gcgltransactor;
- this.gcglidea = gcglidea;
- this.fgtransactor = fgtransactor;
- this.fgidea = fgidea;
- this.status = status;
- }
- public int AlertID
- {
- get { return this.alertid; }
- }
- public int ConID
- {
- get { return this.conid; }
- }
- public string ConSort
- {
- get { return this.consort; }
- }
- public string AlertName
- {
- get { return this.alertname; }
- }
- public string BgFName
- {
- get { return this.bgfname; }
- }
- public string Jctransactor
- {
- get { return this.jctransactor; }
- }
- public string Jcfname
- {
- get { return this.jcfname; }
- }
- public string Zgtransactor
- {
- get { return this.zgtransactor; }
- }
- public string Zgfname
- {
- get { return this.zgfname; }
- }
- public string Gcgltransactor
- {
- get { return this.gcgltransactor; }
- }
- public string Gcglidea
- {
- get { return this.gcglidea; }
- }
- public string Fgtransactor
- {
- get { return this.fgtransactor; }
- }
- public string Fgidea
- {
- get { return this.fgidea; }
- }
- public int Status
- {
- get { return this.status; }
- }
- }
- #endregion
- #region XML结点
- public class DocumentNode
- {
- private string filename;
- private string checker;
- private string time;
- private string type;
- public DocumentNode()
- { }
- public DocumentNode(string filename, string checker, string time, string type)
- {
- this.filename = filename;
- this.checker = checker;
- this.time = time;
- this.type = type;
- }
- public string FileName
- {
- get { return this.filename; }
- set { this.filename = value; }
- }
- public string Checker
- {
- get { return this.checker; }
- set { this.checker = checker; }
- }
- public string Time
- {
- get { return this.time; }
- set { this.time = value; }
- }
- public string Type
- {
- get { return this.type; }
- set { this.type = value; }
- }
- }
- #endregion
- }