You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how can i do mapping using swagger @ApiModelProperty for next getter method
public Map<String, BigDecimal> getTags() {
return tags;
}
should i use
@ApiModelProperty(name ="tags", notes = "tags note", dataType = "java.util.Map[string,java.math.BigDecimal]", value = "tags description")
or this will not work??
The text was updated successfully, but these errors were encountered:
how can i do mapping using swagger @ApiModelProperty for next getter method
public Map<String, BigDecimal> getTags() {
return tags;
}
should i use
@ApiModelProperty(name ="tags", notes = "tags note", dataType = "java.util.Map[string,java.math.BigDecimal]", value = "tags description")
or this will not work??
The text was updated successfully, but these errors were encountered: