123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 瓦斯积聚区修改
- */
- public class A_D10027 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String type;//类型0-空白区1-积聚区2点火区
- /**
- *类型0-空白区1-积聚区2点火区
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型0-空白区1-积聚区2点火区
- */
- public String getType() {
- return this.type;
- }
- double gasdensity;//瓦斯浓度
- /**
- *瓦斯浓度
- */
- public void setGasdensity(double gasdensity) {
- this.gasdensity=gasdensity;
- }
- /**
- *瓦斯浓度
- */
- public double getGasdensity() {
- return this.gasdensity;
- }
- int ggid;//瓦斯积聚区ID
- /**
- *瓦斯积聚区ID
- */
- public void setGgid(int ggid) {
- this.ggid=ggid;
- }
- /**
- *瓦斯积聚区ID
- */
- public int getGgid() {
- return this.ggid;
- }
- }
|