A_D10014.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 物理属性添加修改
  9. */
  10. public class A_D10014 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int coid;//物理属性ID
  13. /**
  14. *物理属性ID
  15. */
  16. public void setCoid(int coid) {
  17. this.coid=coid;
  18. }
  19. /**
  20. *物理属性ID
  21. */
  22. public int getCoid() {
  23. return this.coid;
  24. }
  25. String code;//物理属性编号
  26. /**
  27. *物理属性编号
  28. */
  29. public void setCode(String code) {
  30. this.code=code;
  31. }
  32. /**
  33. *物理属性编号
  34. */
  35. public String getCode() {
  36. return this.code;
  37. }
  38. String name;//名称
  39. /**
  40. *名称
  41. */
  42. public void setName(String name) {
  43. this.name=name;
  44. }
  45. /**
  46. *名称
  47. */
  48. public String getName() {
  49. return this.name;
  50. }
  51. double density;//密度
  52. /**
  53. *密度
  54. */
  55. public void setDensity(double density) {
  56. this.density=density;
  57. }
  58. /**
  59. *密度
  60. */
  61. public double getDensity() {
  62. return this.density;
  63. }
  64. double diffcoe;//扩散系数
  65. /**
  66. *扩散系数
  67. */
  68. public void setDiffcoe(double diffcoe) {
  69. this.diffcoe=diffcoe;
  70. }
  71. /**
  72. *扩散系数
  73. */
  74. public double getDiffcoe() {
  75. return this.diffcoe;
  76. }
  77. double speheat;//比热
  78. /**
  79. *比热
  80. */
  81. public void setSpeheat(double speheat) {
  82. this.speheat=speheat;
  83. }
  84. /**
  85. *比热
  86. */
  87. public double getSpeheat() {
  88. return this.speheat;
  89. }
  90. }