A_D10027.java 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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_D10027 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String type;//类型0-空白区1-积聚区2点火区
  13. /**
  14. *类型0-空白区1-积聚区2点火区
  15. */
  16. public void setType(String type) {
  17. this.type=type;
  18. }
  19. /**
  20. *类型0-空白区1-积聚区2点火区
  21. */
  22. public String getType() {
  23. return this.type;
  24. }
  25. double gasdensity;//瓦斯浓度
  26. /**
  27. *瓦斯浓度
  28. */
  29. public void setGasdensity(double gasdensity) {
  30. this.gasdensity=gasdensity;
  31. }
  32. /**
  33. *瓦斯浓度
  34. */
  35. public double getGasdensity() {
  36. return this.gasdensity;
  37. }
  38. int ggid;//瓦斯积聚区ID
  39. /**
  40. *瓦斯积聚区ID
  41. */
  42. public void setGgid(int ggid) {
  43. this.ggid=ggid;
  44. }
  45. /**
  46. *瓦斯积聚区ID
  47. */
  48. public int getGgid() {
  49. return this.ggid;
  50. }
  51. }