| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.hcks.cmfds.vo;
- public class WpMatrixVo {
-
- private String wpId;
- private String wpName;
- private Double capacity;
- private Double power;
- private Double speed;
- private Integer quantity;
- private Double djts;
- private Double yxts;
- private Double tjts;
- private Double lxts;
- private Double whts;
- private Double xdts;
-
- public String getWpName() {
- return wpName;
- }
- public void setWpName(String wpName) {
- this.wpName = wpName;
- }
- public String getWpId() {
- return wpId;
- }
- public void setWpId(String wpId) {
- this.wpId = wpId;
- }
-
- public Double getPower() {
- return power;
- }
- public void setPower(Double power) {
- this.power = power;
- }
- public Double getSpeed() {
- return speed;
- }
- public void setSpeed(Double speed) {
- this.speed = speed;
- }
-
- public Double getCapacity() {
- return capacity;
- }
- public void setCapacity(Double capacity) {
- this.capacity = capacity;
- }
-
- public Integer getQuantity() {
- return quantity;
- }
- public void setQuantity(Integer quantity) {
- this.quantity = quantity;
- }
- public Double getDjts() {
- return djts;
- }
- public void setDjts(Double djts) {
- this.djts = djts;
- }
- public Double getYxts() {
- return yxts;
- }
- public void setYxts(Double yxts) {
- this.yxts = yxts;
- }
- public Double getTjts() {
- return tjts;
- }
- public void setTjts(Double tjts) {
- this.tjts = tjts;
- }
- public Double getLxts() {
- return lxts;
- }
- public void setLxts(Double lxts) {
- this.lxts = lxts;
- }
- public Double getWhts() {
- return whts;
- }
- public void setWhts(Double whts) {
- this.whts = whts;
- }
- public Double getXdts() {
- return xdts;
- }
- public void setXdts(Double xdts) {
- this.xdts = xdts;
- }
-
-
-
-
- }
|