| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 | 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();    }}
 |