WpMatrixVo.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.hcks.cmfds.vo;
  2. public class WpMatrixVo {
  3. private String wpId;
  4. private String wpName;
  5. private Double capacity;
  6. private Double power;
  7. private Double speed;
  8. private Integer quantity;
  9. private Double djts;
  10. private Double yxts;
  11. private Double tjts;
  12. private Double lxts;
  13. private Double whts;
  14. private Double xdts;
  15. public String getWpName() {
  16. return wpName;
  17. }
  18. public void setWpName(String wpName) {
  19. this.wpName = wpName;
  20. }
  21. public String getWpId() {
  22. return wpId;
  23. }
  24. public void setWpId(String wpId) {
  25. this.wpId = wpId;
  26. }
  27. public Double getPower() {
  28. return power;
  29. }
  30. public void setPower(Double power) {
  31. this.power = power;
  32. }
  33. public Double getSpeed() {
  34. return speed;
  35. }
  36. public void setSpeed(Double speed) {
  37. this.speed = speed;
  38. }
  39. public Double getCapacity() {
  40. return capacity;
  41. }
  42. public void setCapacity(Double capacity) {
  43. this.capacity = capacity;
  44. }
  45. public Integer getQuantity() {
  46. return quantity;
  47. }
  48. public void setQuantity(Integer quantity) {
  49. this.quantity = quantity;
  50. }
  51. public Double getDjts() {
  52. return djts;
  53. }
  54. public void setDjts(Double djts) {
  55. this.djts = djts;
  56. }
  57. public Double getYxts() {
  58. return yxts;
  59. }
  60. public void setYxts(Double yxts) {
  61. this.yxts = yxts;
  62. }
  63. public Double getTjts() {
  64. return tjts;
  65. }
  66. public void setTjts(Double tjts) {
  67. this.tjts = tjts;
  68. }
  69. public Double getLxts() {
  70. return lxts;
  71. }
  72. public void setLxts(Double lxts) {
  73. this.lxts = lxts;
  74. }
  75. public Double getWhts() {
  76. return whts;
  77. }
  78. public void setWhts(Double whts) {
  79. this.whts = whts;
  80. }
  81. public Double getXdts() {
  82. return xdts;
  83. }
  84. public void setXdts(Double xdts) {
  85. this.xdts = xdts;
  86. }
  87. }