1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.xcong.excoin.netty.bean;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @author wzy
| * @date 2021-02-24
| **/
| @Data
| public class SubResponse implements Serializable {
|
| private String id;
|
| private String status;
|
| private String subbed;
|
| private long ts;
| }
|
|