A_D50011.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_D50011 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int doorbaseid;//风门配置id
  13. /**
  14. *风门配置id
  15. */
  16. public void setDoorbaseid(int doorbaseid) {
  17. this.doorbaseid=doorbaseid;
  18. }
  19. /**
  20. *风门配置id
  21. */
  22. public int getDoorbaseid() {
  23. return this.doorbaseid;
  24. }
  25. int pid;//管道ID
  26. /**
  27. *管道ID
  28. */
  29. public void setPid(int pid) {
  30. this.pid=pid;
  31. }
  32. /**
  33. *管道ID
  34. */
  35. public int getPid() {
  36. return this.pid;
  37. }
  38. String doorname;//风门名称
  39. /**
  40. *风门名称
  41. */
  42. public void setDoorname(String doorname) {
  43. this.doorname=doorname;
  44. }
  45. /**
  46. *风门名称
  47. */
  48. public String getDoorname() {
  49. return this.doorname;
  50. }
  51. double site;//位置
  52. /**
  53. *位置
  54. */
  55. public void setSite(double site) {
  56. this.site=site;
  57. }
  58. /**
  59. *位置
  60. */
  61. public double getSite() {
  62. return this.site;
  63. }
  64. double dragcoe;//阻力系数
  65. /**
  66. *阻力系数
  67. */
  68. public void setDragcoe(double dragcoe) {
  69. this.dragcoe=dragcoe;
  70. }
  71. /**
  72. *阻力系数
  73. */
  74. public double getDragcoe() {
  75. return this.dragcoe;
  76. }
  77. int onoff;//开关0-关1-开
  78. /**
  79. *开关0-关1-开
  80. */
  81. public void setOnoff(int onoff) {
  82. this.onoff=onoff;
  83. }
  84. /**
  85. *开关0-关1-开
  86. */
  87. public int getOnoff() {
  88. return this.onoff;
  89. }
  90. String doorcode;//风门编码
  91. /**
  92. *风门编码
  93. */
  94. public void setDoorcode(String doorcode) {
  95. this.doorcode=doorcode;
  96. }
  97. /**
  98. *风门编码
  99. */
  100. public String getDoorcode() {
  101. return this.doorcode;
  102. }
  103. }