package com.panzhihua.service_community.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* (McsConfig)表实体类
|
*
|
* @author makejava
|
* @since 2021-12-28 14:37:07
|
*/
|
@Data
|
@TableName(value = "mcs_config")
|
@SuppressWarnings("serial")
|
public class McsConfig implements Serializable {
|
private static final long serialVersionUID = 304699800613967550L;
|
|
private Long id;
|
/**
|
* 商业街配置项名称
|
*/
|
private String name;
|
/**
|
* 配置项
|
*/
|
@TableField("`key`")
|
private String key;
|
/**
|
* 配置内容
|
*/
|
private String value;
|
/**
|
* 创建时间
|
*/
|
private Date createdAt;
|
/**
|
* 创建人
|
*/
|
private Long createdBy;
|
/**
|
* 更新时间
|
*/
|
private Date updatedAt;
|
/**
|
* 由谁更新
|
*/
|
private Long updatedBy;
|
|
}
|