xuhy
2024-12-12 412ed345ecf217516fa697f0a25cf7e67559958f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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:购买须知,4:隐私协议 5:注册协议")
    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;
 
 
}