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
84
85
86
package com.ruoyi.domain;
 
 
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
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;
 
import java.util.Date;
 
/**
 * 【请填写功能名称】对象 archive_category
 *
 * @author ruoyi
 * @date 2025-07-26
 */
public class ArchiveCategory extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.AUTO)
 
    private Long id;
 
    /** $column.columnComment */
    @Excel(name = "编号")
    private String numb;
 
    /** $column.columnComment */
    @Excel(name = "名称")
    private String nname;
 
 
    private Date ctime;
 
    public Date getCtime() {
        return ctime;
    }
 
    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
 
    public void setNumb(String numb)
    {
        this.numb = numb;
    }
 
    public String getNumb()
    {
        return numb;
    }
 
    public void setNname(String nname)
    {
        this.nname = nname;
    }
 
    public String getNname()
    {
        return nname;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("numb", getNumb())
                .append("nname", getNname())
                .toString();
    }
}