|
|
|
@ -1,6 +1,7 @@
|
|
|
|
package cn.iocoder.yudao.module.mes.controller.admin.baogongrecord.vo;
|
|
|
|
package cn.iocoder.yudao.module.mes.controller.admin.baogongrecord.vo;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
@ -12,6 +13,10 @@ import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
|
|
@Data
|
|
|
|
public class BaogongRecordStatRespVO {
|
|
|
|
public class BaogongRecordStatRespVO {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "报工记录Id")
|
|
|
|
|
|
|
|
private String id;
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "任务单编码")
|
|
|
|
@Schema(description = "任务单编码")
|
|
|
|
@ExcelProperty("任务单编码")
|
|
|
|
@ExcelProperty("任务单编码")
|
|
|
|
private String taskCode;
|
|
|
|
private String taskCode;
|
|
|
|
@ -58,6 +63,7 @@ public class BaogongRecordStatRespVO {
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "报工时间")
|
|
|
|
@Schema(description = "报工时间")
|
|
|
|
@ExcelProperty("报工时间")
|
|
|
|
@ExcelProperty("报工时间")
|
|
|
|
|
|
|
|
@ColumnWidth(20)
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
private LocalDateTime baogongTime;
|
|
|
|
private LocalDateTime baogongTime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|