yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/ProParamSheetVO.class */
public class ProParamSheetVO implements Serializable {
    private static final long serialVersionUID = 377459819369615190L;
    @ApiModelProperty("表头")
    List<String> head;
    @ApiModelProperty("内容")
    List<List<Object>> content;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/ProParamSheetVO$ProParamSheetVOBuilder.class */
    public static class ProParamSheetVOBuilder {
        private List<String> head;
        private List<List<Object>> content;
 
        ProParamSheetVOBuilder() {
        }
 
        public ProParamSheetVOBuilder head(final List<String> head) {
            this.head = head;
            return this;
        }
 
        public ProParamSheetVOBuilder content(final List<List<Object>> content) {
            this.content = content;
            return this;
        }
 
        public ProParamSheetVO build() {
            return new ProParamSheetVO(this.head, this.content);
        }
 
        public String toString() {
            return "ProParamSheetVO.ProParamSheetVOBuilder(head=" + this.head + ", content=" + this.content + ")";
        }
    }
 
    public void setHead(final List<String> head) {
        this.head = head;
    }
 
    public void setContent(final List<List<Object>> content) {
        this.content = content;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ProParamSheetVO) {
            ProParamSheetVO other = (ProParamSheetVO) o;
            if (other.canEqual(this)) {
                Object this$head = getHead();
                Object other$head = other.getHead();
                if (this$head == null) {
                    if (other$head != null) {
                        return false;
                    }
                } else if (!this$head.equals(other$head)) {
                    return false;
                }
                Object this$content = getContent();
                Object other$content = other.getContent();
                return this$content == null ? other$content == null : this$content.equals(other$content);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ProParamSheetVO;
    }
 
    public int hashCode() {
        Object $head = getHead();
        int result = (1 * 59) + ($head == null ? 43 : $head.hashCode());
        Object $content = getContent();
        return (result * 59) + ($content == null ? 43 : $content.hashCode());
    }
 
    public String toString() {
        return "ProParamSheetVO(head=" + getHead() + ", content=" + getContent() + ")";
    }
 
    public static ProParamSheetVOBuilder builder() {
        return new ProParamSheetVOBuilder();
    }
 
    public ProParamSheetVO() {
    }
 
    public ProParamSheetVO(final List<String> head, final List<List<Object>> content) {
        this.head = head;
        this.content = content;
    }
 
    public List<String> getHead() {
        return this.head;
    }
 
    public List<List<Object>> getContent() {
        return this.content;
    }
}