forked from dyf/fys-Multi-tenant
设备列表-导出excel 缺少绑定状态,excel表头顺序按列表展示
This commit is contained in:
@ -22,9 +22,6 @@ public class DeviceExcelExportDTO {
|
||||
// @ExcelProperty("ID")
|
||||
// private Long id;
|
||||
|
||||
@ExcelProperty("设备类型")
|
||||
@ColumnWidth(20)
|
||||
private String typeName;
|
||||
|
||||
// @ExcelProperty("设备类型")
|
||||
// private Long deviceType;
|
||||
@ -55,12 +52,25 @@ public class DeviceExcelExportDTO {
|
||||
@ColumnWidth(20)
|
||||
private String deviceImei;
|
||||
|
||||
@ExcelProperty("设备类型")
|
||||
@ColumnWidth(20)
|
||||
private String typeName;
|
||||
|
||||
// @ExcelProperty("经度")
|
||||
// private String longitude;
|
||||
|
||||
// @ExcelProperty("纬度")
|
||||
// private String latitude;
|
||||
|
||||
/**
|
||||
* 绑定状态
|
||||
* 0 未绑定
|
||||
* 1 已绑定
|
||||
*/
|
||||
@ExcelProperty("绑定状态")
|
||||
@ColumnWidth(20)
|
||||
private String bindingStatus;
|
||||
|
||||
@ExcelProperty("备注")
|
||||
@ColumnWidth(30)
|
||||
private String remark;
|
||||
|
||||
Reference in New Issue
Block a user