package com.gk.hotwork.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
|
@TableName("prevent_danger_image")
|
public class PreventDangerImage implements Serializable {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private String imagePath;
|
|
private Long parentId;
|
|
private Byte status;
|
|
private Byte type;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getImagePath() {
|
return imagePath;
|
}
|
|
public void setImagePath(String imagePath) {
|
this.imagePath = imagePath;
|
}
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId = parentId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
}
|