package com.bofeng.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import lombok.Getter; import lombok.Setter; @Getter @Setter @TableName("tb_place") public class Place { @TableId("place_id") private Long placeId; @TableField("place_name") private String placeName; @TableField("place_address") private String placeAddress; @TableField("place_desc") private String placeDesc; @TableField("be_active") private String beActive; }