STL_COMMON_SAMPLING.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Core.LgMes.Server.lgClassModel
  5. {
  6. [Serializable]
  7. public class STL_COMMON_SAMPLING
  8. {
  9. public String HEATPROCESSNO = "";
  10. public String SAMPLINGID = "";
  11. public String SAMPLINGNAME = "";
  12. public String HEATNO = "";
  13. public String STATIONCODE = "";
  14. public String DISPOSALTIME = "";
  15. public String SAMPLINGDEPICT = "";
  16. public String SAMPLINGVALUE = "";
  17. public String SAMPLINGDATE = "";
  18. public STL_COMMON_SAMPLING()
  19. {
  20. }
  21. public STL_COMMON_SAMPLING(String heatprocessno, String samplingid,
  22. String samplingname, String heatno, String stationcode,
  23. String disposaltime, String samplingdepict, String samplingvalue,
  24. String samplingdate)
  25. {
  26. this.HEATPROCESSNO = heatprocessno;
  27. this.SAMPLINGID = samplingid;
  28. this.SAMPLINGNAME = samplingname;
  29. this.HEATNO = heatno;
  30. this.STATIONCODE = stationcode;
  31. this.DISPOSALTIME = disposaltime;
  32. this.SAMPLINGDEPICT = samplingdepict;
  33. this.SAMPLINGVALUE = samplingvalue;
  34. this.SAMPLINGDATE = samplingdate;
  35. }
  36. public String getHeatprocessno()
  37. {
  38. return this.HEATPROCESSNO;
  39. }
  40. public void setHeatprocessno(String heatprocessno)
  41. {
  42. this.HEATPROCESSNO = heatprocessno;
  43. }
  44. public String getSamplingid()
  45. {
  46. return this.SAMPLINGID;
  47. }
  48. public void setSamplingid(String samplingid)
  49. {
  50. this.SAMPLINGID = samplingid;
  51. }
  52. public String getSamplingname()
  53. {
  54. return this.SAMPLINGNAME;
  55. }
  56. public void setSamplingname(String samplingname)
  57. {
  58. this.SAMPLINGNAME = samplingname;
  59. }
  60. public String getHeatno()
  61. {
  62. return this.HEATNO;
  63. }
  64. public void setHeatno(String heatno)
  65. {
  66. this.HEATNO = heatno;
  67. }
  68. public String getStationcode()
  69. {
  70. return this.STATIONCODE;
  71. }
  72. public void setStationcode(String stationcode)
  73. {
  74. this.STATIONCODE = stationcode;
  75. }
  76. public String getDisposaltime()
  77. {
  78. return this.DISPOSALTIME;
  79. }
  80. public void setDisposaltime(String disposaltime)
  81. {
  82. this.DISPOSALTIME = disposaltime;
  83. }
  84. public String getSamplingdepict()
  85. {
  86. return this.SAMPLINGDEPICT;
  87. }
  88. public void setSamplingdepict(String samplingdepict)
  89. {
  90. this.SAMPLINGDEPICT = samplingdepict;
  91. }
  92. public String getSamplingvalue()
  93. {
  94. return this.SAMPLINGVALUE;
  95. }
  96. public void setSamplingvalue(String samplingvalue)
  97. {
  98. this.SAMPLINGVALUE = samplingvalue;
  99. }
  100. public String getSamplingdate()
  101. {
  102. return this.SAMPLINGDATE;
  103. }
  104. public void setSamplingdate(String samplingdate)
  105. {
  106. this.SAMPLINGDATE = samplingdate;
  107. }
  108. public void Copy(ref STL_COMMON_SAMPLING par)
  109. {
  110. //HEATPROCESSNO = par.HEATPROCESSNO;
  111. //SAMPLINGID = par.SAMPLINGID;
  112. //SAMPLINGNAME = par.SAMPLINGNAME;
  113. //HEATNO = par.HEATNO;
  114. //STATIONCODE = par.STATIONCODE;
  115. //DISPOSALTIME = par.DISPOSALTIME;
  116. //SAMPLINGDEPICT = par.SAMPLINGDEPICT;
  117. //SAMPLINGVALUE = par.SAMPLINGVALUE;
  118. //SAMPLINGDATE = par.SAMPLINGDATE;
  119. }
  120. }
  121. }