123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 风门配置添加修改
- */
- public class A_D50011 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int doorbaseid;//风门配置id
- /**
- *风门配置id
- */
- public void setDoorbaseid(int doorbaseid) {
- this.doorbaseid=doorbaseid;
- }
- /**
- *风门配置id
- */
- public int getDoorbaseid() {
- return this.doorbaseid;
- }
- int pid;//管道ID
- /**
- *管道ID
- */
- public void setPid(int pid) {
- this.pid=pid;
- }
- /**
- *管道ID
- */
- public int getPid() {
- return this.pid;
- }
- String doorname;//风门名称
- /**
- *风门名称
- */
- public void setDoorname(String doorname) {
- this.doorname=doorname;
- }
- /**
- *风门名称
- */
- public String getDoorname() {
- return this.doorname;
- }
- double site;//位置
- /**
- *位置
- */
- public void setSite(double site) {
- this.site=site;
- }
- /**
- *位置
- */
- public double getSite() {
- return this.site;
- }
- double dragcoe;//阻力系数
- /**
- *阻力系数
- */
- public void setDragcoe(double dragcoe) {
- this.dragcoe=dragcoe;
- }
- /**
- *阻力系数
- */
- public double getDragcoe() {
- return this.dragcoe;
- }
- int onoff;//开关0-关1-开
- /**
- *开关0-关1-开
- */
- public void setOnoff(int onoff) {
- this.onoff=onoff;
- }
- /**
- *开关0-关1-开
- */
- public int getOnoff() {
- return this.onoff;
- }
- String doorcode;//风门编码
- /**
- *风门编码
- */
- public void setDoorcode(String doorcode) {
- this.doorcode=doorcode;
- }
- /**
- *风门编码
- */
- public String getDoorcode() {
- return this.doorcode;
- }
- }
|