xuhy
2024-12-11 0a1533fd30ec1a2f4624ccda4ff11f2535ea8a46
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
50
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;
import java.util.List;
 
/**
 * <p>
 * 每次改变偏好的记录
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_user_change")
@ApiModel(value="TUserChange对象", description="每次改变偏好的记录")
public class TUserChange implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "用户id")
    @TableField("user_id")
    private Long userId;
 
    @TableField("create_by")
    private Long createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
@TableLogic
@TableField("is_delete")
private Integer isDelete;
    @ApiModelProperty("偏好设置数组")
    @TableField(exist = false)
    private List<TUserChangeDetail> userChangeDetails;
 
 
}