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 io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 系统设置表
|
* </p>
|
*
|
* @author fengjin
|
* @since 2022-10-14
|
*/
|
@TableName("automessage_sys_settings")
|
@Data
|
@ApiModel("系统设置类")
|
public class AutomessageSysSettings implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@ApiModelProperty("主键")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 设置名称
|
*/
|
@ApiModelProperty("设置名称")
|
private String settingName;
|
|
/**
|
* 系统通知时间
|
*/
|
@ApiModelProperty("系统通知时间")
|
private Integer timeoutNotificationNum;
|
|
|
/**
|
* 系统提醒时间
|
*/
|
@ApiModelProperty("系统提醒时间")
|
private Integer timeoutRemindNum;
|
|
/**
|
* 创建时间
|
*/
|
@ApiModelProperty("创建时间")
|
private LocalDateTime createTime;
|
|
/**
|
* 创建人id
|
*/
|
@ApiModelProperty("创建人id")
|
private Integer createUserId;
|
|
/**
|
* 更新时间
|
*/
|
@ApiModelProperty("更新时间")
|
private LocalDateTime updateTime;
|
|
/**
|
* 修改人id
|
*/
|
@ApiModelProperty("修改人id")
|
private String updateUserId;
|
|
/**
|
* 小程序二维码
|
*/
|
@ApiModelProperty("小程序二维码")
|
private String appletsUrl;
|
|
/**
|
* 官网二维码
|
*/
|
@ApiModelProperty("小程序二维码")
|
private String websiteUrl;
|
|
}
|