package com.ruoyi.doublePrevention.entity.ZDReport;
|
|
import lombok.Data;
|
|
@Data
|
/**
|
* @Description:
|
* @Author: 专项检查情况记录表
|
* */
|
public class ZDTaskLogDTO {
|
|
private String id;
|
private String hazard_code;
|
private String task_id;
|
private String check_type;
|
private String check_date;
|
private String result_status;
|
private String deleted;
|
private String create_by;
|
private String create_date;
|
private String update_date;
|
private String update_by;
|
}
|