| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | package com.miniframe.model.system;import com.miniframe.system.MiniserviceBaseModel;import java.io.Serializable;import javax.persistence.*;@Table(name = "d_con")public class DCon extends MiniserviceBaseModel implements Serializable {    @Id    private Integer id;    /**     * 英文编码     */    private String code;    /**     * 名称     */    private String name;    /**     * 密度     */    private Float density;    /**     * 扩散系数     */    private Float diffcoe;    /**     * 比热     */    private Float speheat;    private static final long serialVersionUID = 1L;    /**     * @return id     */    public Integer getId() {        return id;    }    /**     * @param id     */    public void setId(Integer id) {        this.id = id;    }    /**     * 获取英文编码     *     * @return code - 英文编码     */    public String getCode() {        return code;    }    /**     * 设置英文编码     *     * @param code 英文编码     */    public void setCode(String code) {        this.code = code == null ? null : code.trim();    }    /**     * 获取名称     *     * @return name - 名称     */    public String getName() {        return name;    }    /**     * 设置名称     *     * @param name 名称     */    public void setName(String name) {        this.name = name == null ? null : name.trim();    }    /**     * 获取密度     *     * @return density - 密度     */    public Float getDensity() {        return density;    }    /**     * 设置密度     *     * @param density 密度     */    public void setDensity(Float density) {        this.density = density;    }    /**     * 获取扩散系数     *     * @return diffcoe - 扩散系数     */    public Float getDiffcoe() {        return diffcoe;    }    /**     * 设置扩散系数     *     * @param diffcoe 扩散系数     */    public void setDiffcoe(Float diffcoe) {        this.diffcoe = diffcoe;    }    /**     * 获取比热     *     * @return speheat - 比热     */    public Float getSpeheat() {        return speheat;    }    /**     * 设置比热     *     * @param speheat 比热     */    public void setSpeheat(Float speheat) {        this.speheat = speheat;    }}
 |