12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.lemon.lifecenter.dto;
- public class ApiStatisticsDTO {
- private int centerCode = 0;
- private String centerName = "";
- private String locationCode = "";
- private String locationName = "";
- private String cooperativeCode = "";
- private String cooperativeName = "";
- private int apiCount = 0;
- private String resourceType = "";
- private String result = "";
- private String ip = "";
- private String createDate = "";
-
- public int getCenterCode() {
- return centerCode;
- }
- public void setCenterCode(int centerCode) {
- this.centerCode = centerCode;
- }
- public String getCenterName() {
- return centerName;
- }
- public void setCenterName(String centerName) {
- this.centerName = centerName;
- }
- public String getLocationCode() {
- return locationCode;
- }
- public void setLocationCode(String locationCode) {
- this.locationCode = locationCode;
- }
- public String getLocationName() {
- return locationName;
- }
- public void setLocationName(String locationName) {
- this.locationName = locationName;
- }
- public String getCooperativeCode() {
- return cooperativeCode;
- }
- public void setCooperativeCode(String cooperativeCode) {
- this.cooperativeCode = cooperativeCode;
- }
- public String getCooperativeName() {
- return cooperativeName;
- }
- public void setCooperativeName(String cooperativeName) {
- this.cooperativeName = cooperativeName;
- }
- public int getApiCount() {
- return apiCount;
- }
- public void setApiCount(int apiCount) {
- this.apiCount = apiCount;
- }
- public String getResourceType() {
- return resourceType;
- }
- public void setResourceType(String resourceType) {
- this.resourceType = resourceType;
- }
- public String getResult() {
- return result;
- }
- public void setResult(String result) {
- this.result = result;
- }
- public String getIp() {
- return ip;
- }
- public void setIp(String ip) {
- this.ip = ip;
- }
- public String getCreateDate() {
- return createDate;
- }
- public void setCreateDate(String createDate) {
- this.createDate = createDate;
- }
- }
|