其他分享
首页 > 其他分享> > Kaggle竞赛经典案例深度剖析

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;


标签:index,竞赛,name,ExcelProperty,Kaggle,private,剖析,ApiModelProperty,value
来源: https://blog.51cto.com/u_15063244/2813547