package com.ruoyi.safety.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("safety_risk")
|
public class SafetyRisk extends SafetyBaseEntity {
|
|
private String type;
|
|
private String level;
|
|
private String description;
|
|
private String post;
|
|
private String controlMeasures;
|
}
|