admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
package com.newvideo.domain.web;
 
import java.util.List;
 
import com.google.gson.annotations.Expose;
import com.newvideo.domain.HotVideoType;
 
/**
 * 热门分类
 * 
 * @author Administrator
 * 
 */
public class HotTypeAdmin {
    @Expose
    private HotVideoType hotType;
    @Expose
    private List<DetailSystemSelect> detailSystemList;
 
    public HotTypeAdmin(HotVideoType hotType,
            List<DetailSystemSelect> detailSystemList) {
        super();
        this.hotType = hotType;
        this.detailSystemList = detailSystemList;
    }
    
    public HotTypeAdmin() {
        // TODO Auto-generated constructor stub
    }
 
    public HotVideoType getHotType() {
        return hotType;
    }
 
    public void setHotType(HotVideoType hotType) {
        this.hotType = hotType;
    }
 
    public List<DetailSystemSelect> getDetailSystemList() {
        return detailSystemList;
    }
 
    public void setDetailSystemList(List<DetailSystemSelect> detailSystemList) {
        this.detailSystemList = detailSystemList;
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((hotType == null) ? 0 : hotType.hashCode());
        return result;
    }
 
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        HotTypeAdmin other = (HotTypeAdmin) obj;
        if (hotType == null) {
            if (other.hotType != null)
                return false;
        } else if (!hotType.equals(other.hotType))
            return false;
        return true;
    }
    
}