com.github.jackieonway.swagger.entity.SwaggerModelReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-spring-boot-starter Show documentation
Show all versions of swagger-spring-boot-starter Show documentation
Swagger starter project for Spring Boot
The newest version!
/**
* Jackie.
* Copyright (c)) 2019 - 2019 All Right Reserved
*/
package com.github.jackieonway.swagger.entity;
/**
* @author Jackie
* @version $id: SwaggerModelReference.java v 0.1 2019-10-22 16:45 Jackie Exp $$
*/
public class SwaggerModelReference {
/**
* swagger params can revice type such as "string\Long"
*/
private String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy