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
package com.qianwen.smartman.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
@ApiModel(value = "CustomImportFieldsVO", description = "可用的导入字段VO")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomImportFieldsVO.class */
public class CustomImportFieldsVO implements Serializable {
    @ApiModelProperty("系统基础导入字段list")
    private List<CustomImportFieldInfoVO> systemFieldList;
    @ApiModelProperty("自定义导入字段list")
    private List<CustomImportFieldInfoVO> customFieldList;
 
    public void setSystemFieldList(final List<CustomImportFieldInfoVO> systemFieldList) {
        this.systemFieldList = systemFieldList;
    }
 
    public void setCustomFieldList(final List<CustomImportFieldInfoVO> customFieldList) {
        this.customFieldList = customFieldList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CustomImportFieldsVO) {
            CustomImportFieldsVO other = (CustomImportFieldsVO) o;
            if (other.canEqual(this)) {
                Object this$systemFieldList = getSystemFieldList();
                Object other$systemFieldList = other.getSystemFieldList();
                if (this$systemFieldList == null) {
                    if (other$systemFieldList != null) {
                        return false;
                    }
                } else if (!this$systemFieldList.equals(other$systemFieldList)) {
                    return false;
                }
                Object this$customFieldList = getCustomFieldList();
                Object other$customFieldList = other.getCustomFieldList();
                return this$customFieldList == null ? other$customFieldList == null : this$customFieldList.equals(other$customFieldList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CustomImportFieldsVO;
    }
 
    public int hashCode() {
        Object $systemFieldList = getSystemFieldList();
        int result = (1 * 59) + ($systemFieldList == null ? 43 : $systemFieldList.hashCode());
        Object $customFieldList = getCustomFieldList();
        return (result * 59) + ($customFieldList == null ? 43 : $customFieldList.hashCode());
    }
 
    public String toString() {
        return "CustomImportFieldsVO(systemFieldList=" + getSystemFieldList() + ", customFieldList=" + getCustomFieldList() + ")";
    }
 
    public List<CustomImportFieldInfoVO> getSystemFieldList() {
        return this.systemFieldList;
    }
 
    public List<CustomImportFieldInfoVO> getCustomFieldList() {
        return this.customFieldList;
    }
}