diff --git a/src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java b/src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java index 44daecbefadeeb5d51c57d4fd002b4802fae9ef0..5b0a0b313bc12f1677df3985238f12b6f3b30c63 100644 --- a/src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java +++ b/src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java @@ -21,6 +21,8 @@ public class ApiBaseDto implements Serializable { @ApiModelProperty("服务编码") private String apiCode; + @ApiModelProperty("服务名称") + private String apiName; @ApiModelProperty("服务分类编码") private String apiGroupCode; @@ -200,4 +202,20 @@ public class ApiBaseDto implements Serializable { public void setApiGroupName(String apiGroupName) { this.apiGroupName = apiGroupName; } + + public String getApiName() { + return apiName; + } + + public void setApiName(String apiName) { + this.apiName = apiName; + } + + public Integer getCurrentPage() { + return currentPage; + } + + public void setCurrentPage(Integer currentPage) { + this.currentPage = currentPage; + } }