package com.ruoyi.device.execl;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
@Data
|
public class DeviceMaintenanceExeclDto {
|
|
|
|
|
@Schema(description = "设备名称")
|
@Excel(name = "设备名称")
|
private String deviceName;
|
|
@Excel(name = "规格型号")
|
@Schema(description = "规格型号")
|
private String deviceModel;
|
|
@Excel(name = "计划保养日期", dateFormat = "yyyy-MM-dd HH:mm:ss", width = 30)
|
@Schema(description = "计划保养日期")
|
private Date maintenancePlanTime;
|
|
@Schema(description = "实际保养人")
|
@Excel(name = "实际保养人")
|
private String maintenanceActuallyName;
|
|
@Schema(description = "实际保养日期")
|
@Excel(name = "实际保养日期", dateFormat = "yyyy-MM-dd HH:mm:ss", width = 30)
|
private LocalDateTime maintenanceActuallyTime;
|
|
@Schema(description = "保养结果 0 维修 1 完好")
|
@Excel(name = "保养结果")
|
private String maintenanceResult;
|
|
@Schema(description = "状态 0 待保养 1 完结 2 失败")
|
@Excel(name = "状态")
|
private String status;
|
|
@Schema(description = "创建时间")
|
@Excel(name = "录入时间", dateFormat = "yyyy-MM-dd HH:mm:ss", width = 30)
|
private Date createTime;
|
|
@Schema(description = "创建人")
|
// @Excel(name = "录入人")
|
private String createUser;
|
|
}
|