feige
7 天以前 4581db487ca237dca8eb31415135e800b9982929
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.core.domain.entity.SysUser;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 【请填写功能名称】对象 archiverecordstouser
 * 
 * @author ruoyi
 * @date 2025-07-20
 */
public class Archiverecordstouser extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 档案目录id
 */
    @Excel(name = "档案目录id ")
    private String archiveRecordsId;
 
    /** 用户id */
    @Excel(name = "用户id")
    private Long userId;
 
    public SysUser getSysUser() {
        return sysUser;
    }
 
    public void setSysUser(SysUser sysUser) {
        this.sysUser = sysUser;
    }
    @TableField(exist = false)
    private SysUser sysUser;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
 
    public void setArchiveRecordsId(String archiveRecordsId)
    {
        this.archiveRecordsId = archiveRecordsId;
    }
 
    public String getArchiveRecordsId()
    {
        return archiveRecordsId;
    }
 
    public void setUserId(Long userId) 
    {
        this.userId = userId;
    }
 
    public Long getUserId() 
    {
        return userId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("archiveRecordsId", getArchiveRecordsId())
            .append("userId", getUserId())
            .toString();
    }
}