fei.wang
2024-03-21 ab64b09ce3020b376af1e6ee0326ea71330d34ad
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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.util;
 
public class pageresult<T> extends result<T> {
    private Long count;
 
    public pageresult(Long count, String msg, T data) {
        super(msg, data);
        this.count = count;
    }
 
    public pageresult(Long count, T data) {
        super(data);
        this.count = count;
    }
 
    public Long getCount() {
        return this.count;
    }
 
    public void setCount(Long count) {
        this.count = count;
    }
 
    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof pageresult)) {
            return false;
        } else {
            pageresult<?> other = (pageresult)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                Object this$count = this.getCount();
                Object other$count = other.getCount();
                if (this$count == null) {
                    if (other$count != null) {
                        return false;
                    }
                } else if (!this$count.equals(other$count)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof pageresult;
    }
 
    public int hashCode() {
        int result = 1;
        Object $count = this.getCount();
        result = result * 59 + ($count == null ? 43 : $count.hashCode());
        return result;
    }
 
    public String toString() {
        return "pageresult(count=" + this.getCount() + ")";
    }
 
    public pageresult() {
    }
}