123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 报警设置修改
- */
- public class A_D10029 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int id;//设置ID
- /**
- *设置ID
- */
- public void setId(int id) {
- this.id=id;
- }
- /**
- *设置ID
- */
- public int getId() {
- return this.id;
- }
- String height;//水位
- /**
- *水位
- */
- public void setHeight(String height) {
- this.height=height;
- }
- /**
- *水位
- */
- public String getHeight() {
- return this.height;
- }
- String temperature;//温度
- /**
- *温度
- */
- public void setTemperature(String temperature) {
- this.temperature=temperature;
- }
- /**
- *温度
- */
- public String getTemperature() {
- return this.temperature;
- }
- String co2;//二氧化碳浓度
- /**
- *二氧化碳浓度
- */
- public void setCo2(String co2) {
- this.co2=co2;
- }
- /**
- *二氧化碳浓度
- */
- public String getCo2() {
- return this.co2;
- }
- String ch4;//ch4浓度
- /**
- *ch4浓度
- */
- public void setCh4(String ch4) {
- this.ch4=ch4;
- }
- /**
- *ch4浓度
- */
- public String getCh4() {
- return this.ch4;
- }
- String so2;//so2浓度
- /**
- *so2浓度
- */
- public void setSo2(String so2) {
- this.so2=so2;
- }
- /**
- *so2浓度
- */
- public String getSo2() {
- return this.so2;
- }
- }
|