admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
package com.yeshi.fanli.vo.homemodule;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.bus.homemodule.SwiperPicture;
 
public class BannerVO extends SwiperPicture{
     
    private static final long serialVersionUID = 1L;
    
    private Boolean needSpin;
    
    @Expose
    private String comment;
 
    public String getComment() {
        return comment;
    }
 
    public void setComment(String comment) {
        this.comment = comment;
    }
 
    public Boolean getNeedSpin() {
        return needSpin;
    }
 
    public void setNeedSpin(Boolean needSpin) {
        this.needSpin = needSpin;
    }
    
     
}