123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- package com.gyee.power.fitting.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * <p>
- *
- * </p>
- *
- * @author gfhd
- * @since 2022-12-13
- */
- public class Windpowerstationtestingpoint2 implements Serializable {
- private static final long serialVersionUID = 1L;
- private String code;
- private String name;
- private String model;
- private String valueunit;
- private String englishname;
- private String typeid;
- private String modelid;
- private BigDecimal maxval;
- private BigDecimal minval;
- private BigDecimal reasonablemaxval;
- private BigDecimal reasonableminval;
- private String uniformcode;
- private String shortid;
- private String longid;
- private String windpowerstationid;
- private String realtimeid;
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public String getValueunit() {
- return valueunit;
- }
- public void setValueunit(String valueunit) {
- this.valueunit = valueunit;
- }
- public String getEnglishname() {
- return englishname;
- }
- public void setEnglishname(String englishname) {
- this.englishname = englishname;
- }
- public String getTypeid() {
- return typeid;
- }
- public void setTypeid(String typeid) {
- this.typeid = typeid;
- }
- public String getModelid() {
- return modelid;
- }
- public void setModelid(String modelid) {
- this.modelid = modelid;
- }
- public BigDecimal getMaxval() {
- return maxval;
- }
- public void setMaxval(BigDecimal maxval) {
- this.maxval = maxval;
- }
- public BigDecimal getMinval() {
- return minval;
- }
- public void setMinval(BigDecimal minval) {
- this.minval = minval;
- }
- public BigDecimal getReasonablemaxval() {
- return reasonablemaxval;
- }
- public void setReasonablemaxval(BigDecimal reasonablemaxval) {
- this.reasonablemaxval = reasonablemaxval;
- }
- public BigDecimal getReasonableminval() {
- return reasonableminval;
- }
- public void setReasonableminval(BigDecimal reasonableminval) {
- this.reasonableminval = reasonableminval;
- }
- public String getUniformcode() {
- return uniformcode;
- }
- public void setUniformcode(String uniformcode) {
- this.uniformcode = uniformcode;
- }
- public String getShortid() {
- return shortid;
- }
- public void setShortid(String shortid) {
- this.shortid = shortid;
- }
- public String getLongid() {
- return longid;
- }
- public void setLongid(String longid) {
- this.longid = longid;
- }
- public String getWindpowerstationid() {
- return windpowerstationid;
- }
- public void setWindpowerstationid(String windpowerstationid) {
- this.windpowerstationid = windpowerstationid;
- }
- public String getRealtimeid() {
- return realtimeid;
- }
- public void setRealtimeid(String realtimeid) {
- this.realtimeid = realtimeid;
- }
- @Override
- public String toString() {
- return "Windpowerstationtestingpoint2{" +
- "code = " + code +
- ", name = " + name +
- ", model = " + model +
- ", valueunit = " + valueunit +
- ", englishname = " + englishname +
- ", typeid = " + typeid +
- ", modelid = " + modelid +
- ", maxval = " + maxval +
- ", minval = " + minval +
- ", reasonablemaxval = " + reasonablemaxval +
- ", reasonableminval = " + reasonableminval +
- ", uniformcode = " + uniformcode +
- ", shortid = " + shortid +
- ", longid = " + longid +
- ", windpowerstationid = " + windpowerstationid +
- ", realtimeid = " + realtimeid +
- "}";
- }
- }
|