yangys
2024-03-29 410eed616ce86a76ecfbd272be0a4463ac54a517
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.dnc.vo.sync;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
import javax.validation.constraints.NotBlank;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/sync/SyncArtCatalogVO.class */
public class SyncArtCatalogVO implements Serializable {
    @NotBlank(message = "dnc.catalog.can.not.be.empty")
    @ApiModelProperty("目录")
    private String catalog;
    @ApiModelProperty("工艺包")
    private List<SyncArtBagVO> artBag;
 
    public void setCatalog(final String catalog) {
        this.catalog = catalog;
    }
 
    public void setArtBag(final List<SyncArtBagVO> artBag) {
        this.artBag = artBag;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof SyncArtCatalogVO) {
            SyncArtCatalogVO other = (SyncArtCatalogVO) o;
            if (other.canEqual(this)) {
                Object this$catalog = getCatalog();
                Object other$catalog = other.getCatalog();
                if (this$catalog == null) {
                    if (other$catalog != null) {
                        return false;
                    }
                } else if (!this$catalog.equals(other$catalog)) {
                    return false;
                }
                Object this$artBag = getArtBag();
                Object other$artBag = other.getArtBag();
                return this$artBag == null ? other$artBag == null : this$artBag.equals(other$artBag);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof SyncArtCatalogVO;
    }
 
    public int hashCode() {
        Object $catalog = getCatalog();
        int result = (1 * 59) + ($catalog == null ? 43 : $catalog.hashCode());
        Object $artBag = getArtBag();
        return (result * 59) + ($artBag == null ? 43 : $artBag.hashCode());
    }
 
    public String toString() {
        return "SyncArtCatalogVO(catalog=" + getCatalog() + ", artBag=" + getArtBag() + ")";
    }
 
    public String getCatalog() {
        return this.catalog;
    }
 
    public List<SyncArtBagVO> getArtBag() {
        return this.artBag;
    }
}