Kaggle竞赛经典案例深度剖析

Kaggle竞赛经典案例深度剖析
/**
* 货位名称
*/
@ExcelProperty(value = "货位名称", index = 1)
@ApiModelProperty(value = "货位名称", name = "locationName")
private String locationName;

/**
* 区域名称路径(省市区)
*/
@ExcelProperty(value = "省市区街道", index = 2)
@ApiModelProperty(value = "区域名称路径", name = "regionNamePath")
private String regionNamePath;

/**
* 详情地址
*/
@ExcelProperty(value = "详细地址", index = 3)
@ApiModelProperty(value = "详情地址", name = "address")
private String address;

/**
* 说明
*/
@ExcelProperty(value = "说明", index = 4)
@ApiModelProperty(value = "说明", name = "remark")
private String remark;

/**
* 状态 1:有效 0:无效
*/
@ExcelProperty(value = "状态", index = 5, converter = CustomStateConverter.class)
@ApiModelProperty(value = "状态 1:有效 0:无效", name = "state")
private Integer state;


上一篇:Swagger中配置了@ApiModelProperty的allowableValues属性但不显示


下一篇:柱状图中最大的矩形