admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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.Special;
 
public class SpecialVO extends Special{
     
    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;
    }
    
     
}