AppApiModel.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. package com.yihu.ehr.agModel.app;
  2. /**
  3. * APP_api对象。
  4. *
  5. * @author linzhuo
  6. * @version 1.0
  7. * @created 2016年7月7日17:45:30
  8. */
  9. public class AppApiModel {
  10. private int id;
  11. private String appId;
  12. private String name;
  13. private String description;
  14. private String type;
  15. private String typeName;
  16. private String method;
  17. private String protocol;
  18. private String version;
  19. private int parentId;
  20. private String parameterDemo;
  21. private String activityType;
  22. private String activityTypeName;
  23. private String responseDemo;
  24. private String openLevel;
  25. private String auditLevel;
  26. private String openLevelName;
  27. private String auditLevelName;
  28. private String methodName;
  29. private String microServiceUri;
  30. private String msMethodName;
  31. private String microServiceName;
  32. public String getMicroServiceUri() {
  33. return microServiceUri;
  34. }
  35. public void setMicroServiceUri(String microServiceUri) {
  36. this.microServiceUri = microServiceUri;
  37. }
  38. public String getMsMethodName() {
  39. return msMethodName;
  40. }
  41. public void setMsMethodName(String msMethodName) {
  42. this.msMethodName = msMethodName;
  43. }
  44. public String getMicroServiceName() {
  45. return microServiceName;
  46. }
  47. public void setMicroServiceName(String microServiceName) {
  48. this.microServiceName = microServiceName;
  49. }
  50. public String getOpenLevelName() {
  51. return openLevelName;
  52. }
  53. public void setOpenLevelName(String openLevelName) {
  54. this.openLevelName = openLevelName;
  55. }
  56. public String getAuditLevelName() {
  57. return auditLevelName;
  58. }
  59. public void setAuditLevelName(String auditLevelName) {
  60. this.auditLevelName = auditLevelName;
  61. }
  62. /**
  63. * 界面上适配选中是否适配用做界面展示,代表是否以及被适配
  64. */
  65. private Boolean ischecked;
  66. private String roleId;
  67. public String getRoleId() {
  68. return roleId;
  69. }
  70. public void setRoleId(String roleId) {
  71. this.roleId = roleId;
  72. }
  73. public Boolean getIschecked() {
  74. return ischecked;
  75. }
  76. public void setIschecked(Boolean ischecked) {
  77. this.ischecked = ischecked;
  78. }
  79. public String getTypeName() {
  80. return typeName;
  81. }
  82. public void setTypeName(String typeName) {
  83. this.typeName = typeName;
  84. }
  85. public String getActivityTypeName() {
  86. return activityTypeName;
  87. }
  88. public void setActivityTypeName(String activityTypeName) {
  89. this.activityTypeName = activityTypeName;
  90. }
  91. public int getId() {
  92. return id;
  93. }
  94. public void setId(int id) {
  95. this.id = id;
  96. }
  97. public String getAppId() {
  98. return appId;
  99. }
  100. public void setAppId(String appId) {
  101. this.appId = appId;
  102. }
  103. public String getName() {
  104. return name;
  105. }
  106. public void setName(String name) {
  107. this.name = name;
  108. }
  109. public String getDescription() {
  110. return description;
  111. }
  112. public void setDescription(String description) {
  113. this.description = description;
  114. }
  115. public String getType() {
  116. return type;
  117. }
  118. public void setType(String type) {
  119. this.type = type;
  120. }
  121. public String getMethod() {
  122. return method;
  123. }
  124. public void setMethod(String method) {
  125. this.method = method;
  126. }
  127. public String getProtocol() {
  128. return protocol;
  129. }
  130. public void setProtocol(String protocol) {
  131. this.protocol = protocol;
  132. }
  133. public String getVersion() {
  134. return version;
  135. }
  136. public void setVersion(String version) {
  137. this.version = version;
  138. }
  139. public int getParentId() {
  140. return parentId;
  141. }
  142. public void setParentId(int parentId) {
  143. this.parentId = parentId;
  144. }
  145. public String getParameterDemo() {
  146. return parameterDemo;
  147. }
  148. public void setParameterDemo(String parameterDemo) {
  149. this.parameterDemo = parameterDemo;
  150. }
  151. public String getActivityType() {
  152. return activityType;
  153. }
  154. public void setActivityType(String activityType) {
  155. this.activityType = activityType;
  156. }
  157. public String getResponseDemo() {
  158. return responseDemo;
  159. }
  160. public void setResponseDemo(String responseDemo) {
  161. this.responseDemo = responseDemo;
  162. }
  163. public String getOpenLevel() {
  164. return openLevel;
  165. }
  166. public void setOpenLevel(String openLevel) {
  167. this.openLevel = openLevel;
  168. }
  169. public String getAuditLevel() {
  170. return auditLevel;
  171. }
  172. public void setAuditLevel(String auditLevel) {
  173. this.auditLevel = auditLevel;
  174. }
  175. public String getMethodName() {
  176. return methodName;
  177. }
  178. public void setMethodName(String methodName) {
  179. this.methodName = methodName;
  180. }
  181. }