Commit 32172cb9 authored by chenhao's avatar chenhao

提交代码

parent df5d0b7f
...@@ -3,10 +3,10 @@ package com.yeejoin.amos.boot.module.common.api.entity; ...@@ -3,10 +3,10 @@ package com.yeejoin.amos.boot.module.common.api.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yeejoin.amos.boot.biz.common.entity.BaseEntity; import com.yeejoin.amos.boot.biz.common.entity.BaseEntity;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors; import lombok.experimental.Accessors;
import java.util.Date;
/** /**
* 重点部位 * 重点部位
...@@ -39,6 +39,9 @@ public class KeySite extends BaseEntity { ...@@ -39,6 +39,9 @@ public class KeySite extends BaseEntity {
*/ */
@TableField("building_id") @TableField("building_id")
private Long buildingId; private Long buildingId;
@TableField("building_name")
private String buildingName;
/** /**
* 位置描述 * 位置描述
...@@ -98,7 +101,7 @@ public class KeySite extends BaseEntity { ...@@ -98,7 +101,7 @@ public class KeySite extends BaseEntity {
* 防火标志设立情况 * 防火标志设立情况
*/ */
@TableField("fire_prevention_flag") @TableField("fire_prevention_flag")
private String firePreventionFlag; private Boolean firePreventionFlag;
/** /**
* 危险源 * 危险源
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment