123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 物理属性添加修改
- */
- public class A_D10014 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int coid;//物理属性ID
- /**
- *物理属性ID
- */
- public void setCoid(int coid) {
- this.coid=coid;
- }
- /**
- *物理属性ID
- */
- public int getCoid() {
- return this.coid;
- }
- String code;//物理属性编号
- /**
- *物理属性编号
- */
- public void setCode(String code) {
- this.code=code;
- }
- /**
- *物理属性编号
- */
- public String getCode() {
- return this.code;
- }
- String name;//名称
- /**
- *名称
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *名称
- */
- public String getName() {
- return this.name;
- }
- double density;//密度
- /**
- *密度
- */
- public void setDensity(double density) {
- this.density=density;
- }
- /**
- *密度
- */
- public double getDensity() {
- return this.density;
- }
- double diffcoe;//扩散系数
- /**
- *扩散系数
- */
- public void setDiffcoe(double diffcoe) {
- this.diffcoe=diffcoe;
- }
- /**
- *扩散系数
- */
- public double getDiffcoe() {
- return this.diffcoe;
- }
- double speheat;//比热
- /**
- *比热
- */
- public void setSpeheat(double speheat) {
- this.speheat=speheat;
- }
- /**
- *比热
- */
- public double getSpeheat() {
- return this.speheat;
- }
- }
|