|
@ -1,5 +1,7 @@ |
|
|
package com.win.module.wms.controller.shift.vo; |
|
|
package com.win.module.wms.controller.shift.vo; |
|
|
|
|
|
|
|
|
|
|
|
import com.win.framework.excel.core.annotations.DictFormat; |
|
|
|
|
|
import com.win.framework.excel.core.convert.DictConvert; |
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
import lombok.*; |
|
|
import lombok.*; |
|
|
import java.util.*; |
|
|
import java.util.*; |
|
@ -27,9 +29,6 @@ public class ShiftExcelVO { |
|
|
@ExcelProperty("名称") |
|
|
@ExcelProperty("名称") |
|
|
private String name; |
|
|
private String name; |
|
|
|
|
|
|
|
|
@ExcelProperty("描述") |
|
|
|
|
|
private String description; |
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty("开始时间") |
|
|
@ExcelProperty("开始时间") |
|
|
private LocalDateTime beginTime; |
|
|
private LocalDateTime beginTime; |
|
|
|
|
|
|
|
@ -51,10 +50,12 @@ public class ShiftExcelVO { |
|
|
@ExcelProperty("创建者ID") |
|
|
@ExcelProperty("创建者ID") |
|
|
private String creator; |
|
|
private String creator; |
|
|
|
|
|
|
|
|
@ExcelProperty("是否跨天") |
|
|
@ExcelProperty(value = "是否跨天", converter = DictConvert.class) |
|
|
|
|
|
@DictFormat("true_false") |
|
|
private String endAtNextDay; |
|
|
private String endAtNextDay; |
|
|
|
|
|
|
|
|
@ExcelProperty("是否可用") |
|
|
@ExcelProperty(value = "是否可用", converter = DictConvert.class) |
|
|
|
|
|
@DictFormat("true_false") |
|
|
private String available; |
|
|
private String available; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|