c76c31e657e7edebc2ab12d78fa7886921351960.svn-base 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * GwRouteApiParam
  9. *
  10. * @author lune
  11. * @date 2019-12-24
  12. */
  13. public class GwRouteApiParam extends PageParam implements Serializable {
  14. private String id;
  15. @ApiModelProperty("方法名")
  16. private String method;
  17. private String url;
  18. private String className;
  19. @ApiModelProperty("接口类型get/post")
  20. private String type;
  21. @ApiModelProperty("接口描述")
  22. private String note;
  23. @ApiModelProperty("所属应用,后期扩展使用")
  24. private String ownApp;
  25. public GwRouteApiParam() {
  26. }
  27. public String getId() {
  28. return id;
  29. }
  30. public void setId(String id) {
  31. this.id = id;
  32. }
  33. public String getMethod() {
  34. return method;
  35. }
  36. public void setMethod(String method) {
  37. this.method = method;
  38. }
  39. public String getUrl() {
  40. return url;
  41. }
  42. public void setUrl(String url) {
  43. this.url = url;
  44. }
  45. public String getClassName() {
  46. return className;
  47. }
  48. public void setClassName(String className) {
  49. this.className = className;
  50. }
  51. public String getType() {
  52. return type;
  53. }
  54. public void setType(String type) {
  55. this.type = type;
  56. }
  57. public String getNote() {
  58. return note;
  59. }
  60. public void setNote(String note) {
  61. this.note = note;
  62. }
  63. public String getOwnApp() {
  64. return ownApp;
  65. }
  66. public void setOwnApp(String ownApp) {
  67. this.ownApp = ownApp;
  68. }
  69. }