package com.ruoyi.safety.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("safety_emergency_resource")
|
public class SafetyEmergencyResource extends SafetyBaseEntity {
|
|
private String name;
|
|
private String type;
|
|
private Integer quantity;
|
|
private String location;
|
|
private Long areaId;
|
|
private String manager;
|
|
private Integer status;
|
}
|