A_M00007.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_M00007 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int ptid;//映射编号
  13. /**
  14. *映射编号
  15. */
  16. public void setPtid(int ptid) {
  17. this.ptid=ptid;
  18. }
  19. /**
  20. *映射编号
  21. */
  22. public int getPtid() {
  23. return this.ptid;
  24. }
  25. String ptcode;//平台code
  26. /**
  27. *平台code
  28. */
  29. public void setPtcode(String ptcode) {
  30. this.ptcode=ptcode;
  31. }
  32. /**
  33. *平台code
  34. */
  35. public String getPtcode() {
  36. return this.ptcode;
  37. }
  38. int pid;//管道id
  39. /**
  40. *管道id
  41. */
  42. public void setPid(int pid) {
  43. this.pid=pid;
  44. }
  45. /**
  46. *管道id
  47. */
  48. public int getPid() {
  49. return this.pid;
  50. }
  51. String pcode;//管道code
  52. /**
  53. *管道code
  54. */
  55. public void setPcode(String pcode) {
  56. this.pcode=pcode;
  57. }
  58. /**
  59. *管道code
  60. */
  61. public String getPcode() {
  62. return this.pcode;
  63. }
  64. String pname;//管道名称
  65. /**
  66. *管道名称
  67. */
  68. public void setPname(String pname) {
  69. this.pname=pname;
  70. }
  71. /**
  72. *管道名称
  73. */
  74. public String getPname() {
  75. return this.pname;
  76. }
  77. }