12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- 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;
- }
- }
|