package com.dg.core.db.gen.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 系统设置记录表
|
* </p>
|
*
|
* @author fengjin
|
* @since 2022-10-14
|
*/
|
@TableName("automessage_sys_settings_record")
|
@Data
|
@ApiModel("系统设置类")
|
public class AutomessageSysSettingsRecord implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 设置id
|
*/
|
private Integer settingId;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 创建人id(及修改设置的人员)
|
*/
|
private String createUserId;
|
|
|
|
}
|