|
@@ -13,4 +13,70 @@ public class ApiStatisticsDTO {
|
|
|
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;
|
|
|
+ }
|
|
|
}
|