123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 系统服务
- */
- 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;
- }
- String siteremark;//位置说明
- /**
- *位置说明
- */
- public void setSiteremark(String siteremark) {
- this.siteremark=siteremark;
- }
- /**
- *位置说明
- */
- public String getSiteremark() {
- return this.siteremark;
- }
- }
|