springmvc传值时遇到参数类型无法转换问题
2018-06-15 本文已影响0人
刘周可
public String statPlatform(
PlatformCountQuery platformCountQuery,
@RequestParam(name = "statType", required = false, defaultValue = "0")
@ApiParam(value = "统计类型 0:天 1:周 2:月 3:年 默认为天") int statType) {
//...
}
@RequestParam:添加对应的参数绑定注解
@ApiParam:用于swagger前端字段注释