yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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
package com.qianwen.smartman.modules.smis.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
import com.qianwen.smartman.modules.smis.dto.KeyNameDTO;
 
@ApiModel(value = "ShiftIndexNameVO", description = "班次名称VO")
public class ShiftIndexNameVO implements Serializable {
    private static final long serialVersionUID = -3251941188539536021L;
    @ApiModelProperty("key-name")
    private List<KeyNameDTO> keyNameDTOList;
 
   
    public static class ShiftIndexNameVOBuilder {
        private List<KeyNameDTO> keyNameDTOList;
 
        ShiftIndexNameVOBuilder() {
        }
 
        public ShiftIndexNameVOBuilder keyNameDTOList(final List<KeyNameDTO> keyNameDTOList) {
            this.keyNameDTOList = keyNameDTOList;
            return this;
        }
 
        public ShiftIndexNameVO build() {
            return new ShiftIndexNameVO(this.keyNameDTOList);
        }
 
        public String toString() {
            return "ShiftIndexNameVO.ShiftIndexNameVOBuilder(keyNameDTOList=" + this.keyNameDTOList + ")";
        }
    }
 
    public void setKeyNameDTOList(final List<KeyNameDTO> keyNameDTOList) {
        this.keyNameDTOList = keyNameDTOList;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ShiftIndexNameVO) {
            ShiftIndexNameVO other = (ShiftIndexNameVO) o;
            if (other.canEqual(this)) {
                Object this$keyNameDTOList = getKeyNameDTOList();
                Object other$keyNameDTOList = other.getKeyNameDTOList();
                return this$keyNameDTOList == null ? other$keyNameDTOList == null : this$keyNameDTOList.equals(other$keyNameDTOList);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ShiftIndexNameVO;
    }
 
    public int hashCode() {
        Object $keyNameDTOList = getKeyNameDTOList();
        int result = (1 * 59) + ($keyNameDTOList == null ? 43 : $keyNameDTOList.hashCode());
        return result;
    }
 
    public String toString() {
        return "ShiftIndexNameVO(keyNameDTOList=" + getKeyNameDTOList() + ")";
    }
 
    public static ShiftIndexNameVOBuilder builder() {
        return new ShiftIndexNameVOBuilder();
    }
 
    public ShiftIndexNameVO() {
    }
 
    public ShiftIndexNameVO(final List<KeyNameDTO> keyNameDTOList) {
        this.keyNameDTOList = keyNameDTOList;
    }
 
    public List<KeyNameDTO> getKeyNameDTOList() {
        return this.keyNameDTOList;
    }
}