package com.mzl.flower.entity.flower; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseNoIdEntity; import lombok.Data; @Data @TableName("t_flower_markup_ps") public class FlowerMarkupPs extends BaseNoIdEntity { @TableId(value = "id") private Long id; @TableField("name") private String name; @TableField("tel") private String tel; }