package com.ruoyi.system.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 后台信息设置
|
* </p>
|
*
|
* @author luodangjia
|
* @since 2024-09-19
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("t_info_config")
|
@ApiModel(value="TInfoConfig对象", description="后台信息设置")
|
public class TInfoConfig implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
@ApiModelProperty(value = "1:关于我们2:顶部slogn 3:购买须知")
|
|
private Long id;
|
@ApiModelProperty(hidden = true)
|
@TableField(value = "config_type")
|
private Integer configType;
|
@TableField("content")
|
private String content;
|
|
@TableField("create_by")
|
private Long createBy;
|
|
|
@TableField("create_time")
|
private LocalDateTime createTime;
|
|
@TableLogic
|
@TableField("is_delete")
|
private Integer isDelete;
|
|
|
}
|