ApiStatisticsDTO.java 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.lemon.lifecenter.dto;
  2. public class ApiStatisticsDTO {
  3. private int centerCode = 0;
  4. private String centerName = "";
  5. private String locationCode = "";
  6. private String locationName = "";
  7. private String cooperativeCode = "";
  8. private String cooperativeName = "";
  9. private int apiCount = 0;
  10. private String resourceType = "";
  11. private String result = "";
  12. private String ip = "";
  13. private String createDate = "";
  14. public int getCenterCode() {
  15. return centerCode;
  16. }
  17. public void setCenterCode(int centerCode) {
  18. this.centerCode = centerCode;
  19. }
  20. public String getCenterName() {
  21. return centerName;
  22. }
  23. public void setCenterName(String centerName) {
  24. this.centerName = centerName;
  25. }
  26. public String getLocationCode() {
  27. return locationCode;
  28. }
  29. public void setLocationCode(String locationCode) {
  30. this.locationCode = locationCode;
  31. }
  32. public String getLocationName() {
  33. return locationName;
  34. }
  35. public void setLocationName(String locationName) {
  36. this.locationName = locationName;
  37. }
  38. public String getCooperativeCode() {
  39. return cooperativeCode;
  40. }
  41. public void setCooperativeCode(String cooperativeCode) {
  42. this.cooperativeCode = cooperativeCode;
  43. }
  44. public String getCooperativeName() {
  45. return cooperativeName;
  46. }
  47. public void setCooperativeName(String cooperativeName) {
  48. this.cooperativeName = cooperativeName;
  49. }
  50. public int getApiCount() {
  51. return apiCount;
  52. }
  53. public void setApiCount(int apiCount) {
  54. this.apiCount = apiCount;
  55. }
  56. public String getResourceType() {
  57. return resourceType;
  58. }
  59. public void setResourceType(String resourceType) {
  60. this.resourceType = resourceType;
  61. }
  62. public String getResult() {
  63. return result;
  64. }
  65. public void setResult(String result) {
  66. this.result = result;
  67. }
  68. public String getIp() {
  69. return ip;
  70. }
  71. public void setIp(String ip) {
  72. this.ip = ip;
  73. }
  74. public String getCreateDate() {
  75. return createDate;
  76. }
  77. public void setCreateDate(String createDate) {
  78. this.createDate = createDate;
  79. }
  80. }