forked from loafle/openapi-generator-original
70 lines
2.2 KiB
Plaintext
70 lines
2.2 KiB
Plaintext
{{#description}}@ApiModel(description = "{{{description}}}"){{/description}}
|
|
{{>generatedAnnotation}}
|
|
public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#serializableModel}}implements Serializable{{/serializableModel}} {
|
|
{{#vars}}{{#isEnum}}
|
|
|
|
{{>enumClass}}{{/isEnum}}{{#items.isEnum}}{{#items}}
|
|
|
|
{{>enumClass}}{{/items}}{{/items.isEnum}}
|
|
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}};{{/vars}}
|
|
|
|
{{#vars}}
|
|
/**{{#description}}
|
|
* {{{description}}}{{/description}}{{#minimum}}
|
|
* minimum: {{minimum}}{{/minimum}}{{#maximum}}
|
|
* maximum: {{maximum}}{{/maximum}}
|
|
**/
|
|
{{#vendorExtensions.extraAnnotation}}{{vendorExtensions.extraAnnotation}}{{/vendorExtensions.extraAnnotation}}
|
|
@ApiModelProperty({{#required}}required = {{required}}, {{/required}}value = "{{{description}}}")
|
|
@JsonProperty("{{baseName}}")
|
|
public {{{datatypeWithEnum}}} {{getter}}() {
|
|
return {{name}};
|
|
}
|
|
public void {{setter}}({{{datatypeWithEnum}}} {{name}}) {
|
|
this.{{name}} = {{name}};
|
|
}
|
|
|
|
{{/vars}}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
{{classname}} {{classVarName}} = ({{classname}}) o;
|
|
|
|
return true {{#hasVars}}&& {{#vars}}Objects.equals({{name}}, {{classVarName}}.{{name}}){{#hasMore}} &&
|
|
{{/hasMore}}{{/vars}}{{/hasVars}}
|
|
{{#parent}}&& super.equals(o){{/parent}};
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash({{#vars}}{{name}}{{#hasMore}}, {{/hasMore}}{{/vars}}{{#parent}}{{#hasVars}},{{/hasVars}} super.hashCode(){{/parent}});
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class {{classname}} {\n");
|
|
{{#parent}}sb.append(" ").append(toIndentedString(super.toString())).append("\n");{{/parent}}
|
|
{{#vars}}sb.append(" {{name}}: ").append(toIndentedString({{name}})).append("\n");
|
|
{{/vars}}sb.append("}");
|
|
return sb.toString();
|
|
}
|
|
|
|
/**
|
|
* Convert the given object to string with each line indented by 4 spaces
|
|
* (except the first line).
|
|
*/
|
|
private String toIndentedString(Object o) {
|
|
if (o == null) {
|
|
return "null";
|
|
}
|
|
return o.toString().replace("\n", "\n ");
|
|
}
|
|
}
|