BaseChem.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.com.vo
  4. {
  5. [Serializable]
  6. public class BaseChem
  7. {
  8. /** 化学元素代码 */
  9. private string chemCode;
  10. public string ChemCode
  11. {
  12. get { return chemCode; }
  13. set { chemCode = value; }
  14. }
  15. /** 化学元素描述 */
  16. private string chemName;
  17. public string ChemName
  18. {
  19. get { return chemName; }
  20. set { chemName = value; }
  21. }
  22. /** 化学元素类型(A:单一元素,B:复合元素) */
  23. private string chemType;
  24. public string ChemType
  25. {
  26. get { return chemType; }
  27. set { chemType = value; }
  28. }
  29. /** 复合元素计算公式 */
  30. private string chemFormula;
  31. public string ChemFormula
  32. {
  33. get { return chemFormula; }
  34. set { chemFormula = value; }
  35. }
  36. /** 创建人 */
  37. private string createName;
  38. public string CreateName
  39. {
  40. get { return createName; }
  41. set { createName = value; }
  42. }
  43. /** 创建时间 */
  44. private DateTime? createTime;
  45. public DateTime? CreateTime
  46. {
  47. get { return createTime; }
  48. set { createTime = value; }
  49. }
  50. /** 修改人 */
  51. private string updateName;
  52. public string UpdateName
  53. {
  54. get { return updateName; }
  55. set { updateName = value; }
  56. }
  57. /** 修改时间 */
  58. private DateTime? updateTime;
  59. public DateTime? UpdateTime
  60. {
  61. get { return updateTime; }
  62. set { updateTime = value; }
  63. }
  64. /** 删除人 */
  65. private string deleteName;
  66. public string DeleteName
  67. {
  68. get { return deleteName; }
  69. set { deleteName = value; }
  70. }
  71. /** 删除时间 */
  72. private DateTime? deleteTime;
  73. public DateTime? DeleteTime
  74. {
  75. get { return deleteTime; }
  76. set { deleteTime = value; }
  77. }
  78. /** 有效标志(1:有效,0:无效) */
  79. private string validflag;
  80. public string Validflag
  81. {
  82. get { return validflag; }
  83. set { validflag = value; }
  84. }
  85. /** 备注 */
  86. private string memo;
  87. public string Memo
  88. {
  89. get { return memo; }
  90. set { memo = value; }
  91. }
  92. /** 修约位数(保留几位小数) */
  93. private long? roundingDigits;
  94. public long? RoundingDigits
  95. {
  96. get { return roundingDigits; }
  97. set { roundingDigits = value; }
  98. }
  99. /** {老系统}化学元素代码 */
  100. private string chemCodeOld;
  101. public string ChemCodeOld
  102. {
  103. get { return chemCodeOld; }
  104. set { chemCodeOld = value; }
  105. }
  106. }
  107. }