zss
2025-01-13 8d85246f061e3da623c7b9eb4e323ee724b4de0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.yuanchu.mom.dto;
 
import com.yuanchu.mom.pojo.DeviceAccidentReport;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Author: yuan
 * Date: 2024-12-18 星期三 10:00:48
 * Description:
 */
@Data
public class DeviceAccidentReportDto extends DeviceAccidentReport {
    @ApiModelProperty("时间")
    private String accidentDateStr;
 
    @ApiModelProperty("报告人填写时间")
    private String reportDateStr;
 
    @ApiModelProperty("评估人填写时间")
    private String assessorDateStr;
 
    @ApiModelProperty("部门负责人填写时间")
    private String departmentHeadDateStr;
 
    @ApiModelProperty("技术负责人填写时间")
    private String technicalDirectorDateStr;
 
    @ApiModelProperty("主任填写时间")
    private String directorHeadDateStr;
}