package org.example.ssmico.demos.web.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @description 配置表
|
* @author BEJSON
|
* @date 2024-04-15
|
*/
|
@Data
|
public class TConfiguration implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
/**
|
* id
|
*/
|
private Integer id;
|
|
/**
|
* 配置键
|
*/
|
private String configKey;
|
|
/**
|
* 配置值
|
*/
|
private String configValue;
|
|
/**
|
* 创建时间
|
*/
|
private Date createdAt;
|
|
/**
|
* 更新时间
|
*/
|
private Date updatedAt;
|
|
public TConfiguration() {}
|
}
|