ProjectInfo.cs
上传用户: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 ProjectInfo
  7.     {
  8.         private int projectid;
  9.         private string projectname;
  10.         private string prjsort;
  11.         private string jctransactor;
  12.         private string jcfname;
  13.         private string questorg;
  14.         private string zgtransactor;
  15.         private string zgfname;
  16.         private string jqbxtransactor;
  17.         private string jqbxfname;
  18.         private string gcglxtransactor;
  19.         private string gcglxfname;
  20.         private string jqbbtransactor;
  21.         private string jqbbfname;
  22.         private string gcglhtransactor;
  23.         private string gcglhfname;
  24.         private string fgtransactor;
  25.         private string fgidea;
  26.         private string zjwyhtransactor;
  27.         private string zjwyhidea;
  28.         private string gstransactor;
  29.         private string gsidea;
  30.         private string gcglqtransactor;
  31.         private string gcglqidea;
  32.         private string jqbztransactor;
  33.         private string jqbzfname;
  34.         private int  status;
  35.         public ProjectInfo()
  36.         {
  37.         }
  38.         /// <summary>
  39.         /// 项目工程计划
  40.         /// </summary>
  41.         /// <param name="status">项目状态(0、正常;1、项目申请完成;2、作废;</param>
  42.         public ProjectInfo(int projectid,string projectname,string prjsort,string jctransactor,string jcfname,string questorg,string zgtransactor,
  43.                             string zgfname,string jqbxtransactor,string jqbxfname,string gcglxtransactor,string gcglxfname,string jqbbtransactor,
  44.                             string jqbbfname,string gcglhtransactor,string gcglhfname,string fgtransactor,string fgidea,string zjwyhtransactor,
  45.                             string zjwyhidea,string gstransactor,string gsidea,string gcglqtransactor,string gcglqidea,string jqbztransactor,
  46.                             string jqbzfname,int  status)
  47.         {
  48.             this.projectid = projectid;
  49.             this.projectname = projectname;
  50.             this.prjsort = prjsort;
  51.             this.jctransactor = jctransactor;
  52.             this.jcfname = jcfname;
  53.             this.questorg = questorg;
  54.             this.zgtransactor = zgtransactor;
  55.             this.zgfname = zgfname;
  56.             this.jqbxtransactor = jqbxtransactor;
  57.             this.jqbxfname = jqbxfname;
  58.             this.gcglxtransactor = gcglxtransactor;
  59.             this.gcglxfname = gcglxfname;
  60.             this.jqbbtransactor = jqbbtransactor;
  61.             this.jqbbfname = jqbbfname;
  62.             this.gcglhtransactor = gcglhtransactor;
  63.             this.gcglhfname = gcglhfname;
  64.             this.fgtransactor = fgtransactor;
  65.             this.fgidea = fgidea;
  66.             this.zjwyhtransactor = zjwyhtransactor;
  67.             this.zjwyhidea = zjwyhidea;
  68.             this.gstransactor = gstransactor;
  69.             this.gsidea = gsidea;
  70.             this.gcglqtransactor = gcglqtransactor;
  71.             this.gcglqidea = gcglqidea;
  72.             this.jqbztransactor = jqbztransactor;
  73.             this.jqbzfname = jqbzfname;
  74.             this.status = status;
  75.         }
  76.         public int ProjectID
  77.         {
  78.             get { return this.projectid; }
  79.             set { this.projectid = value; }
  80.         }
  81.         public string ProjectName
  82.         {
  83.             get { return this.projectname; }
  84.             set { this.projectname = value; }
  85.         }
  86.         public string PrjSort
  87.         {
  88.             get { return this.prjsort; }
  89.             set { this.prjsort = value; }
  90.         }
  91.         public string JcTransactor
  92.         {
  93.             get { return this.jctransactor; }
  94.             set { this.jctransactor = value; }
  95.         }
  96.         public string JcFName
  97.         {
  98.             get { return this.jcfname; }
  99.             set { this.jcfname = value; }
  100.         }
  101.         public string QuestOrg
  102.         {
  103.             get { return this.questorg; }
  104.             set { this.questorg = value; }
  105.         }
  106.         public string ZgTransactor
  107.         {
  108.             get { return this.zgtransactor; }
  109.             set { this.zgtransactor = value; }
  110.         }
  111.         public string ZgFName
  112.         {
  113.             get { return this.zgfname; }
  114.             set { this.zgfname = value; }
  115.         }
  116.         public string JqbxTransactor
  117.         {
  118.             get { return this.jqbxtransactor; }
  119.             set { this.jqbxtransactor = value; }
  120.         }
  121.         public string JqbxFName
  122.         {
  123.             get { return this.jqbxfname; }
  124.             set { this.jqbxfname = value; }
  125.         }
  126.         public string GcglxTransactor
  127.         {
  128.             get { return this.gcglxtransactor; }
  129.             set { this.gcglxtransactor = value; }
  130.         }
  131.         public string GcglxFName
  132.         {
  133.             get { return this.gcglxfname; }
  134.             set { this.gcglxfname = value; }
  135.         }
  136.         public string JqbbTransactor
  137.         {
  138.             get { return this.jqbbtransactor; }
  139.             set { this.jqbbtransactor = value; }
  140.         }
  141.         public string JqbbFName
  142.         {
  143.             get { return this.jqbbfname; }
  144.             set { this.jqbbfname = value; }
  145.         }
  146.         public string GcglhTransactor
  147.         {
  148.             get { return this.gcglhtransactor; }
  149.             set { this.gcglhtransactor = value; }
  150.         }
  151.         public string GcglhFName
  152.         {
  153.             get { return this.gcglhfname; }
  154.             set { this.gcglhfname = value; }
  155.         }
  156.         public string FgTransactor
  157.         {
  158.             get { return this.fgtransactor; }
  159.             set { this.fgtransactor = value; }
  160.         }
  161.         public string FgIdea
  162.         {
  163.             get { return this.fgidea; }
  164.             set { this.fgidea = value; }
  165.         }
  166.         public string ZjwyhTransactor
  167.         {
  168.             get { return this.zjwyhtransactor; }
  169.             set { this.zjwyhtransactor = value; }
  170.         }
  171.         public string ZjwyhIdea
  172.         {
  173.             get { return this.zjwyhidea; }
  174.             set { this.zjwyhidea = value; }
  175.         }
  176.         public string GsTransactor
  177.         {
  178.             get { return this.gstransactor; }
  179.             set { this.gstransactor = value; }
  180.         }
  181.         public string GsIdea
  182.         {
  183.             get { return this.gsidea; }
  184.             set { this.gsidea = value; }
  185.         }
  186.         public string GcglqTransactor
  187.         {
  188.             get { return this.gcglqtransactor; }
  189.             set { this.gcglqtransactor = value; }
  190.         }
  191.         public string GcglqIdea
  192.         {
  193.             get { return this.gcglqidea; }
  194.             set { this.gcglqidea = value; }
  195.         }
  196.         public string JqbzTransactor
  197.         {
  198.             get { return this.jqbztransactor; }
  199.             set { this.jqbztransactor = value; }
  200.         }
  201.         public string JqbzFName
  202.         {
  203.             get { return this.jqbzfname; }
  204.             set { this.jqbzfname = value; }
  205.         }
  206.         public int  Status
  207.         {
  208.             get { return this.status; }
  209.             set { this.status = value; }
  210.         }
  211.     }
  212. }