admin
2022-01-12 4a7367a869ef12375ea6678ca44e102b8919c624
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
package cn.jpush.api.schedule;
 
 
 
import java.util.List;
 
import com.google.gson.JsonObject;
import com.google.gson.annotations.Expose;
 
import cn.jiguang.common.resp.BaseResult;
 
public class ScheduleMsgIdsResult extends BaseResult{
 
    private static final long serialVersionUID = 995450157929893257L;
    
    @Expose int count;
    
    @Expose List<String> msgids;
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public List<String> getMsgids() {
        return msgids;
    }
 
    public void setMsgids(List<String> msgids) {
        this.msgids = msgids;
    }
 
 
}