| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | 
							- /**
 
-  * 系统服务
 
-  */
 
- package com.miniframe.generate.comm.system;
 
- import com.miniframe.core.BaseMapModel;
 
- import java.io.Serializable;
 
- /**
 
-  * 监测点添加修改
 
-  */
 
- public class A_D10005 extends BaseMapModel implements Serializable {
 
- 	private static final long serialVersionUID = -1463838678425832212L;
 
- 	int cid;//监测点id
 
- 	/**
 
- 	 *监测点id
 
- 	 */
 
- 	public void setCid(int cid) {
 
- 		this.cid=cid;
 
- 	}
 
- 	/**
 
- 	 *监测点id
 
- 	 */
 
- 	public int getCid() {
 
- 		return this.cid;
 
- 	}
 
- 	int pid;//管道编号
 
- 	/**
 
- 	 *管道编号
 
- 	 */
 
- 	public void setPid(int pid) {
 
- 		this.pid=pid;
 
- 	}
 
- 	/**
 
- 	 *管道编号
 
- 	 */
 
- 	public int getPid() {
 
- 		return this.pid;
 
- 	}
 
- 	double site;//位置
 
- 	/**
 
- 	 *位置
 
- 	 */
 
- 	public void setSite(double site) {
 
- 		this.site=site;
 
- 	}
 
- 	/**
 
- 	 *位置
 
- 	 */
 
- 	public double getSite() {
 
- 		return this.site;
 
- 	}
 
- 	String chname;//监测点名称
 
- 	/**
 
- 	 *监测点名称
 
- 	 */
 
- 	public void setChname(String chname) {
 
- 		this.chname=chname;
 
- 	}
 
- 	/**
 
- 	 *监测点名称
 
- 	 */
 
- 	public String getChname() {
 
- 		return this.chname;
 
- 	}
 
- 	String chcode;//监测点编号
 
- 	/**
 
- 	 *监测点编号
 
- 	 */
 
- 	public void setChcode(String chcode) {
 
- 		this.chcode=chcode;
 
- 	}
 
- 	/**
 
- 	 *监测点编号
 
- 	 */
 
- 	public String getChcode() {
 
- 		return this.chcode;
 
- 	}
 
- }
 
 
  |