yangys
2024-04-28 258a769f6790f832d1c67839d59be04a118767e5
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
package com.qianwen.smartman.modules.mdc.dto;
 
import java.util.List;
import com.qianwen.smartman.modules.mdc.vo.StatusRecordVO;
 
public class GroupFeedbackCacheDTO {
    private List<StatusRecordVO> recordList;
    private int statusNum = 0;
    private int cancelNum = 0;
 
    public void setRecordList(final List<StatusRecordVO> recordList) {
        this.recordList = recordList;
    }
 
    public void setStatusNum(final int statusNum) {
        this.statusNum = statusNum;
    }
 
    public void setCancelNum(final int cancelNum) {
        this.cancelNum = cancelNum;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof GroupFeedbackCacheDTO) {
            GroupFeedbackCacheDTO other = (GroupFeedbackCacheDTO) o;
            if (other.canEqual(this) && getStatusNum() == other.getStatusNum() && getCancelNum() == other.getCancelNum()) {
                Object this$recordList = getRecordList();
                Object other$recordList = other.getRecordList();
                return this$recordList == null ? other$recordList == null : this$recordList.equals(other$recordList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof GroupFeedbackCacheDTO;
    }
 
    public int hashCode() {
        int result = (1 * 59) + getStatusNum();
        int result2 = (result * 59) + getCancelNum();
        Object $recordList = getRecordList();
        return (result2 * 59) + ($recordList == null ? 43 : $recordList.hashCode());
    }
 
    public String toString() {
        return "GroupFeedbackCacheDTO(recordList=" + getRecordList() + ", statusNum=" + getStatusNum() + ", cancelNum=" + getCancelNum() + ")";
    }
 
    public List<StatusRecordVO> getRecordList() {
        return this.recordList;
    }
 
    public int getStatusNum() {
        return this.statusNum;
    }
 
    public int getCancelNum() {
        return this.cancelNum;
    }
}