package com.panzhihua.service_community.entity; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * (McsLabel)表实体类 * * @author makejava * @since 2021-12-28 14:37:10 */ @Data @TableName(value = "mcs_label") @SuppressWarnings("serial") public class McsLabel implements Serializable { private static final long serialVersionUID = -23139583272426139L; private Long id; /** * 标签名称 */ private String name; /** * 说明 */ private String introduction; /** * 是否删除 */ private Boolean isDel; /** * 所属商家 */ private Long merchantId; /** * 创建时间 */ private Date createdAt; /** * 创建人 */ private Long createdBy; /** * 更新时间 */ private Date updatedAt; /** * 由谁更新 */ private Long updatedBy; }