liurunyu
2024-08-15 f7e731bdc2fce4445c0d22993134c6c2b07d207b
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
package com.ruoyi.system.domain;
 
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;
 
/**
 * 【请填写功能名称】对象 update_file_name
 * 
 * @author ruoyi
 * @date 2023-03-23
 */
public class UpdateFileName extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private Long id;
 
    /** 文件名称 */
    @Excel(name = "文件名称")
    private String fileName;
 
    /** 文件校验 */
    @Excel(name = "文件校验")
    private String check;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setFileName(String fileName) 
    {
        this.fileName = fileName;
    }
 
    public String getFileName() 
    {
        return fileName;
    }
    public void setCheck(String check) 
    {
        this.check = check;
    }
 
    public String getCheck() 
    {
        return check;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("fileName", getFileName())
            .append("check", getCheck())
            .toString();
    }
}