2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-25 d495f9b8cdc83663e4189bc3cc72ac9543ff5555
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
package com.sandu.ximon.admin.dto.nova;
 
public class PlayerWidgetScrollAttribute {
 
    private PlayerWidgetScrollAttributeAnimation animation;
 
    private Integer speed;
 
    private boolean isHeadTail;
 
    public PlayerWidgetScrollAttribute(PlayerWidgetScrollAttributeAnimation attributeAnimation, Integer speed) {
        this.animation = attributeAnimation;
        this.speed = speed;
        setHeadTail(true);
    }
 
    public boolean isHeadTail() {
        return isHeadTail;
    }
 
    public void setHeadTail(boolean isHeadTail) {
        this.isHeadTail = isHeadTail;
    }
 
    public PlayerWidgetScrollAttributeAnimation getAnimation() {
        return animation;
    }
 
    public void setAnimation(PlayerWidgetScrollAttributeAnimation animation) {
        this.animation = animation;
    }
 
    public Integer getSpeed() {
        return speed;
    }
 
    public void setSpeed(Integer speed) {
        this.speed = speed;
    }
}