A_D10005.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 监测点添加修改
  9. */
  10. public class A_D10005 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int cid;//监测点id
  13. /**
  14. *监测点id
  15. */
  16. public void setCid(int cid) {
  17. this.cid=cid;
  18. }
  19. /**
  20. *监测点id
  21. */
  22. public int getCid() {
  23. return this.cid;
  24. }
  25. int pid;//管道编号
  26. /**
  27. *管道编号
  28. */
  29. public void setPid(int pid) {
  30. this.pid=pid;
  31. }
  32. /**
  33. *管道编号
  34. */
  35. public int getPid() {
  36. return this.pid;
  37. }
  38. double site;//位置
  39. /**
  40. *位置
  41. */
  42. public void setSite(double site) {
  43. this.site=site;
  44. }
  45. /**
  46. *位置
  47. */
  48. public double getSite() {
  49. return this.site;
  50. }
  51. String chname;//监测点名称
  52. /**
  53. *监测点名称
  54. */
  55. public void setChname(String chname) {
  56. this.chname=chname;
  57. }
  58. /**
  59. *监测点名称
  60. */
  61. public String getChname() {
  62. return this.chname;
  63. }
  64. }