package com.miniframe.model.system; import com.miniframe.system.MiniserviceBaseModel; import java.io.Serializable; import javax.persistence.*; @Table(name = "d_boundary") public class DBoundary extends MiniserviceBaseModel implements Serializable { @Id private Integer id; private Integer nid; /** * 节点名称 */ private String nname; /** * massflow质量流 pressure压力 */ private String type; /** * 事故id */ private Integer aid; /** * 流量 */ private String flow; /** * 压强 */ private String pressure; /** * 温度 */ private String temperature; /** * 污染物浓度1 */ private String polcon1; /** * 污染物浓度2 */ private String polcon2; /** * 节点编码 */ private String ncode; private static final long serialVersionUID = 1L; /** * @return id */ public Integer getId() { return id; } /** * @param id */ public void setId(Integer id) { this.id = id; } /** * @return nid */ public Integer getNid() { return nid; } /** * @param nid */ public void setNid(Integer nid) { this.nid = nid; } /** * 获取节点名称 * * @return nname - 节点名称 */ public String getNname() { return nname; } /** * 设置节点名称 * * @param nname 节点名称 */ public void setNname(String nname) { this.nname = nname == null ? null : nname.trim(); } /** * 获取massflow质量流 pressure压力 * * @return type - massflow质量流 pressure压力 */ public String getType() { return type; } /** * 设置massflow质量流 pressure压力 * * @param type massflow质量流 pressure压力 */ public void setType(String type) { this.type = type == null ? null : type.trim(); } /** * 获取事故id * * @return aid - 事故id */ public Integer getAid() { return aid; } /** * 设置事故id * * @param aid 事故id */ public void setAid(Integer aid) { this.aid = aid; } /** * 获取流量 * * @return flow - 流量 */ public String getFlow() { return flow; } /** * 设置流量 * * @param flow 流量 */ public void setFlow(String flow) { this.flow = flow == null ? null : flow.trim(); } /** * 获取压强 * * @return pressure - 压强 */ public String getPressure() { return pressure; } /** * 设置压强 * * @param pressure 压强 */ public void setPressure(String pressure) { this.pressure = pressure == null ? null : pressure.trim(); } /** * 获取温度 * * @return temperature - 温度 */ public String getTemperature() { return temperature; } /** * 设置温度 * * @param temperature 温度 */ public void setTemperature(String temperature) { this.temperature = temperature == null ? null : temperature.trim(); } /** * 获取污染物浓度1 * * @return polcon1 - 污染物浓度1 */ public String getPolcon1() { return polcon1; } /** * 设置污染物浓度1 * * @param polcon1 污染物浓度1 */ public void setPolcon1(String polcon1) { this.polcon1 = polcon1 == null ? null : polcon1.trim(); } /** * 获取污染物浓度2 * * @return polcon2 - 污染物浓度2 */ public String getPolcon2() { return polcon2; } /** * 设置污染物浓度2 * * @param polcon2 污染物浓度2 */ public void setPolcon2(String polcon2) { this.polcon2 = polcon2 == null ? null : polcon2.trim(); } /** * 获取节点编码 * * @return ncode - 节点编码 */ public String getNcode() { return ncode; } /** * 设置节点编码 * * @param ncode 节点编码 */ public void setNcode(String ncode) { this.ncode = ncode == null ? null : ncode.trim(); } }