Power_5_09合并后.rar
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:7k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace com.etong.Model
  5. {
  6.     public class PrjCheckInfo
  7.     {
  8.         private int prjchid;//工程管理验收流程ID
  9.         private string prjchname;//验收项目名称
  10.         private string prjchsort;//项目类别(1、科技2、生产3、营销4、配电)
  11.         private string jctransactor;//基层部门工程完成情况上报人和时间
  12.         private string jcckname;//基层部门上报财务部门报表(电子文档)
  13.         private string jcrkname;//基层部门上报物资部门报表(电子文档)
  14.         private string jcqdname;//基层部门上报主管部门报表(电子文档)
  15.         private string jchzname;//基层部门上报主管部门报表(电子文档)
  16.         private string cwtransactor;//财务部门提交人和时间
  17.         private string cwfname;//财务部门调整资金使用报表(电子文档)
  18.         private string wztransactor;//物资部门提交人和时间
  19.         private string wzfname;//物资部门物资调整报表(电子文档)
  20.         private string zgtransactor;//主管部门提交人和时间
  21.         private string zgzlfname;//主管部门资料(电子文档)
  22.         private string zgtzfname;//主管部门图纸(电子文档)
  23.         private string zghtfname;//主管部门合同(电子文档)
  24.         private string zgwzfname;//主管部门物资(电子文档)
  25.         private string zgqtfname;//主管部门其他资料(电子文档)
  26.         private string gcgltransactor;//工程管理办公室材料报表汇总提交人和时间
  27.         private string gcglfname;//工程管理办公室材料报表汇总,正式竣工报告(电子文档)
  28.         private string gcglgdtransactor;//工程管理办公室材料归档确定人和时间
  29.         private string gcglgdcontect;//工程管理办公室文件归档(只记录文件名)
  30.         private string zggdtransactor;//主管部门资料归档人和时间
  31.         private string zggdcontect;//主管部门资料归档内容(只记录文件名)
  32.         private int status;//状态(1-正常流转,2-结束)
  33.         public PrjCheckInfo()
  34.         { }
  35.         public PrjCheckInfo(int prjchid,
  36.             string prjchname,
  37.             string prjchsort,
  38.             string jctransactor,
  39.             string jcckname,
  40.             string jcrkname,
  41.             string jcqdname,
  42.             string jchzname,
  43.             string cwtransactor,
  44.             string cwfname,
  45.             string wztransactor,
  46.             string wzfname,
  47.             string zgtransactor,
  48.             string zgzlfname,
  49.             string zgtzfname,
  50.             string zghtfname,
  51.             string zgwzfname,
  52.             string zgqtfname,
  53.             string gcgltransactor,
  54.             string gcglfname,
  55.             string gcglgdtransactor,
  56.             string gcglgdcontect,
  57.             string zggdtransactor,
  58.             string zggdcontect,
  59.             int status)
  60.         {
  61.             this.prjchid=prjchid;
  62.             this.prjchname = prjchname;
  63.             this.prjchsort = prjchsort;
  64.             this.jctransactor=jctransactor;
  65.             this.jcckname=jcckname;
  66.             this.jcrkname=jcrkname;            
  67.             this.jcqdname=jcqdname;
  68.             this.jchzname = jchzname;
  69.             this.cwtransactor=cwtransactor;
  70.             this.cwfname=cwfname;
  71.             this.wztransactor=wztransactor;
  72.             this.wzfname=wzfname;
  73.             this.zgtransactor=zgtransactor;
  74.             this.zgzlfname=zgzlfname;
  75.             this.zgtzfname=zgtzfname;
  76.             this.zghtfname=zghtfname;
  77.             this.zgwzfname=zgwzfname;
  78.             this.zgqtfname=zgqtfname;
  79.             this.gcgltransactor=gcgltransactor;
  80.             this.gcglfname=gcglfname;
  81.             this.gcglgdtransactor=gcglgdtransactor;
  82.             this.gcglgdcontect=gcglgdcontect;
  83.             this.zggdtransactor=zggdtransactor;
  84.             this.zggdcontect=zggdcontect;
  85.             this.status = status;            
  86.         }
  87.         /*===========================================================
  88.          *                 映射属性
  89.          * =========================================================*/
  90.         public int PrjChID
  91.         {
  92.             get { return this.prjchid; }
  93.             set { this.prjchid = value; }
  94.         }
  95.         public string  PrjChName
  96.         {
  97.             get { return this.prjchname; }
  98.             set { this.prjchname = value; }
  99.         }
  100.         public string PrjChSort
  101.         {
  102.             get { return this.prjchsort; }
  103.             set { this.prjchsort = value; }
  104.         }
  105.         public string JcTransactor
  106.         {
  107.             get { return this.jctransactor; }
  108.             set { this.jctransactor = value; }
  109.         }
  110.         public string JcCKName
  111.         {
  112.             get { return this.jcckname; }
  113.             set { this.jcckname = value; }
  114.         }
  115.         public string JcRKName
  116.         {
  117.             get { return this.jcrkname; }
  118.             set { this.jcrkname = value; }        
  119.         }
  120.         public string JcQDName
  121.         {
  122.             get { return this.jcqdname; }
  123.             set { this.jcqdname = value; }      
  124.         }
  125.         public string JcHZName
  126.         {
  127.             get { return this.jchzname; }
  128.             set { this.jchzname = value; }
  129.         }
  130.         public string CwTransactor
  131.         {
  132.             get { return this.cwtransactor; }
  133.             set { this.cwtransactor = value; }
  134.         }
  135.         public string CwFName
  136.         {
  137.             get { return this.cwfname; }
  138.             set { this.cwfname = value; }
  139.         }
  140.         public string WzTransatctor
  141.         {
  142.             get { return this.wztransactor; }
  143.             set { this.wztransactor = value; }
  144.         }
  145.         public string WzFName
  146.         {
  147.             get { return this.wzfname; }
  148.             set { this.wzfname = value; }
  149.         }
  150.         public string ZgTransactor
  151.         {
  152.             get { return this.zggdtransactor; }
  153.             set { this.zggdtransactor = value; }
  154.         }
  155.         public string ZgZlFName
  156.         {
  157.             get { return this.zggdtransactor; }
  158.             set { this.zggdtransactor = value; }
  159.         }
  160.         public string ZgTzFName
  161.         {
  162.             get { return this.zgtzfname; }
  163.             set { this.zgtzfname = value; }
  164.         }
  165.         public string ZgHtFName
  166.         {
  167.             get { return this.zghtfname; }
  168.             set { this.zghtfname = value; }
  169.         }
  170.         public string ZgWzFName
  171.         {
  172.             get { return this.zgwzfname; }
  173.             set { this.zgwzfname = value; }
  174.         }
  175.         public string ZgQTFName
  176.         {
  177.             get { return this.zgqtfname; }
  178.             set { this.zgqtfname = value; }
  179.         }
  180.         public string GcglTransactor
  181.         {
  182.             get { return this.gcgltransactor; }
  183.             set { this.gcgltransactor = value; }
  184.         }
  185.         public string GcglFName
  186.         {
  187.             get { return this.gcglfname; }
  188.             set { this.gcglfname = value; }
  189.         }
  190.         public string GcglGdTransactor
  191.         {
  192.             get { return this.gcglgdtransactor; }
  193.             set { this.gcglgdtransactor = value; }
  194.         }
  195.         public string GcglGdContect
  196.         {
  197.             get { return this.gcglgdcontect; }
  198.             set { this.gcglgdcontect = value; }
  199.         }
  200.         public string ZgGdTransactor
  201.         {
  202.             get { return this.zggdtransactor; }
  203.             set { this.zggdtransactor = value; }
  204.         }
  205.         public string ZgGdContect
  206.         {
  207.             get { return this.zggdcontect; }
  208.             set { this.zggdcontect = value; }
  209.         }
  210.         public int Status
  211.         {
  212.             get { return this.status; }
  213.             set { this.status = value; }
  214.         }
  215.         
  216.     }
  217. }