A_D10005.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. String chcode;//监测点编号
  65. /**
  66. *监测点编号
  67. */
  68. public void setChcode(String chcode) {
  69. this.chcode=chcode;
  70. }
  71. /**
  72. *监测点编号
  73. */
  74. public String getChcode() {
  75. return this.chcode;
  76. }
  77. }