yangys
2025-11-05 10c5247722995e571b3fd4dbffb178964a9bd6ee
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
package com.qianwen.smartman.modules.report.vo;
 
 
public class CommonVo {
    private String tbname;
 
    public void setTbname(final String tbname) {
        this.tbname = tbname;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CommonVo) {
            CommonVo other = (CommonVo) o;
            if (other.canEqual(this)) {
                Object this$tbname = getTbname();
                Object other$tbname = other.getTbname();
                return this$tbname == null ? other$tbname == null : this$tbname.equals(other$tbname);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CommonVo;
    }
 
    public int hashCode() {
        Object $tbname = getTbname();
        int result = (1 * 59) + ($tbname == null ? 43 : $tbname.hashCode());
        return result;
    }
 
    public String toString() {
        return "CommonVo(tbname=" + getTbname() + ")";
    }
 
    public String getTbname() {
        return this.tbname;
    }
}