yangys
2024-05-07 9b677ea5c6978788d135fc15da3d78c5a93789c2
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
package com.qianwen.smartman.modules.dnc.dto;
 
public class ArtBagFileNameProcessRule extends DefaultDncFileNameProcessRule implements DncFileNameProcessRule {
    public int selectProperty;
 
    public void setSelectProperty(final int selectProperty) {
        this.selectProperty = selectProperty;
    }
 
    @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ArtBagFileNameProcessRule) {
            ArtBagFileNameProcessRule other = (ArtBagFileNameProcessRule) o;
            return other.canEqual(this) && getSelectProperty() == other.getSelectProperty();
        }
        return false;
    }
 
    @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule
    protected boolean canEqual(final Object other) {
        return other instanceof ArtBagFileNameProcessRule;
    }
 
    @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule
    public int hashCode() {
        int result = (1 * 59) + getSelectProperty();
        return result;
    }
 
    @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule
    public String toString() {
        return "ArtBagFileNameProcessRule(selectProperty=" + getSelectProperty() + ")";
    }
 
    public int getSelectProperty() {
        return this.selectProperty;
    }
}