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
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 = "CustomTemplateFieldRelationVo对象", description = "模板与字段关系表")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomTemplateFieldRelationSortVO.class */
public class CustomTemplateFieldRelationSortVO implements Serializable {
    @ApiModelProperty("模板id")
    private Long templateId;
    @ApiModelProperty("当前配置页类型")
    private Integer configType;
    @ApiModelProperty("排好序后的自定义字段的relationIds")
    private List<Long> ids;
 
    public void setTemplateId(final Long templateId) {
        this.templateId = templateId;
    }
 
    public void setConfigType(final Integer configType) {
        this.configType = configType;
    }
 
    public void setIds(final List<Long> ids) {
        this.ids = ids;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CustomTemplateFieldRelationSortVO) {
            CustomTemplateFieldRelationSortVO other = (CustomTemplateFieldRelationSortVO) o;
            if (other.canEqual(this)) {
                Object this$templateId = getTemplateId();
                Object other$templateId = other.getTemplateId();
                if (this$templateId == null) {
                    if (other$templateId != null) {
                        return false;
                    }
                } else if (!this$templateId.equals(other$templateId)) {
                    return false;
                }
                Object this$configType = getConfigType();
                Object other$configType = other.getConfigType();
                if (this$configType == null) {
                    if (other$configType != null) {
                        return false;
                    }
                } else if (!this$configType.equals(other$configType)) {
                    return false;
                }
                Object this$ids = getIds();
                Object other$ids = other.getIds();
                return this$ids == null ? other$ids == null : this$ids.equals(other$ids);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CustomTemplateFieldRelationSortVO;
    }
 
    public int hashCode() {
        Object $templateId = getTemplateId();
        int result = (1 * 59) + ($templateId == null ? 43 : $templateId.hashCode());
        Object $configType = getConfigType();
        int result2 = (result * 59) + ($configType == null ? 43 : $configType.hashCode());
        Object $ids = getIds();
        return (result2 * 59) + ($ids == null ? 43 : $ids.hashCode());
    }
 
    public String toString() {
        return "CustomTemplateFieldRelationSortVO(templateId=" + getTemplateId() + ", configType=" + getConfigType() + ", ids=" + getIds() + ")";
    }
 
    public Long getTemplateId() {
        return this.templateId;
    }
 
    public Integer getConfigType() {
        return this.configType;
    }
 
    public List<Long> getIds() {
        return this.ids;
    }
}