A_M00022.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_M00022 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String deptName;//机构名称
  13. /**
  14. *机构名称
  15. */
  16. public void setDeptName(String deptName) {
  17. this.deptName=deptName;
  18. }
  19. /**
  20. *机构名称
  21. */
  22. public String getDeptName() {
  23. return this.deptName;
  24. }
  25. String deptCode;//机构编号
  26. /**
  27. *机构编号
  28. */
  29. public void setDeptCode(String deptCode) {
  30. this.deptCode=deptCode;
  31. }
  32. /**
  33. *机构编号
  34. */
  35. public String getDeptCode() {
  36. return this.deptCode;
  37. }
  38. String deptConn;//机构联系人
  39. /**
  40. *机构联系人
  41. */
  42. public void setDeptConn(String deptConn) {
  43. this.deptConn=deptConn;
  44. }
  45. /**
  46. *机构联系人
  47. */
  48. public String getDeptConn() {
  49. return this.deptConn;
  50. }
  51. String deptTel;//机构电话
  52. /**
  53. *机构电话
  54. */
  55. public void setDeptTel(String deptTel) {
  56. this.deptTel=deptTel;
  57. }
  58. /**
  59. *机构电话
  60. */
  61. public String getDeptTel() {
  62. return this.deptTel;
  63. }
  64. String deptAddress;//机构地址
  65. /**
  66. *机构地址
  67. */
  68. public void setDeptAddress(String deptAddress) {
  69. this.deptAddress=deptAddress;
  70. }
  71. /**
  72. *机构地址
  73. */
  74. public String getDeptAddress() {
  75. return this.deptAddress;
  76. }
  77. String deptDesc;//机构说明
  78. /**
  79. *机构说明
  80. */
  81. public void setDeptDesc(String deptDesc) {
  82. this.deptDesc=deptDesc;
  83. }
  84. /**
  85. *机构说明
  86. */
  87. public String getDeptDesc() {
  88. return this.deptDesc;
  89. }
  90. }