| 1234567891011121314151617181920212223242526272829303132333435363738 | 
							- /**
 
-  * 系统服务
 
-  */
 
- package com.miniframe.generate.comm.system;
 
- import com.miniframe.core.BaseMapModel;
 
- import java.io.Serializable;
 
- /**
 
-  * 监测点结果批量获取
 
-  */
 
- public class A_D10019 extends BaseMapModel implements Serializable {
 
- 	private static final long serialVersionUID = -1463838678425832212L;
 
- 	int aid;//事故ID
 
- 	/**
 
- 	 *事故ID
 
- 	 */
 
- 	public void setAid(int aid) {
 
- 		this.aid=aid;
 
- 	}
 
- 	/**
 
- 	 *事故ID
 
- 	 */
 
- 	public int getAid() {
 
- 		return this.aid;
 
- 	}
 
- 	String chname;//监测点名称
 
- 	/**
 
- 	 *监测点名称
 
- 	 */
 
- 	public void setChname(String chname) {
 
- 		this.chname=chname;
 
- 	}
 
- 	/**
 
- 	 *监测点名称
 
- 	 */
 
- 	public String getChname() {
 
- 		return this.chname;
 
- 	}
 
- }
 
 
  |