123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 边界添加修改
- */
- public class A_D10008 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int bid;//边界ID
- /**
- *边界ID
- */
- public void setBid(int bid) {
- this.bid=bid;
- }
- /**
- *边界ID
- */
- public int getBid() {
- return this.bid;
- }
- int nid;//节点编号
- /**
- *节点编号
- */
- public void setNid(int nid) {
- this.nid=nid;
- }
- /**
- *节点编号
- */
- public int getNid() {
- return this.nid;
- }
- String nname;//节点名称
- /**
- *节点名称
- */
- public void setNname(String nname) {
- this.nname=nname;
- }
- /**
- *节点名称
- */
- public String getNname() {
- return this.nname;
- }
- String type;//边界类型
- /**
- *边界类型
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *边界类型
- */
- public String getType() {
- return this.type;
- }
- int aid;//事故ID
- /**
- *事故ID
- */
- public void setAid(int aid) {
- this.aid=aid;
- }
- /**
- *事故ID
- */
- public int getAid() {
- return this.aid;
- }
- String flow;//流量
- /**
- *流量
- */
- public void setFlow(String flow) {
- this.flow=flow;
- }
- /**
- *流量
- */
- public String getFlow() {
- return this.flow;
- }
- String pressure;//压强
- /**
- *压强
- */
- public void setPressure(String pressure) {
- this.pressure=pressure;
- }
- /**
- *压强
- */
- public String getPressure() {
- return this.pressure;
- }
- String temperature;//温度
- /**
- *温度
- */
- public void setTemperature(String temperature) {
- this.temperature=temperature;
- }
- /**
- *温度
- */
- public String getTemperature() {
- return this.temperature;
- }
- String polcon1;//污染物浓度1
- /**
- *污染物浓度1
- */
- public void setPolcon1(String polcon1) {
- this.polcon1=polcon1;
- }
- /**
- *污染物浓度1
- */
- public String getPolcon1() {
- return this.polcon1;
- }
- String polcon2;//污染物浓度2
- /**
- *污染物浓度2
- */
- public void setPolcon2(String polcon2) {
- this.polcon2=polcon2;
- }
- /**
- *污染物浓度2
- */
- public String getPolcon2() {
- return this.polcon2;
- }
- }
|