1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.xcong.excoin.netty.bean;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @author wzy
| * @date 2021-02-24
| **/
| @Data
| public class UnSubRequest implements Serializable {
|
| private static final long serialVersionUID = -7082425849051404678L;
| private String unsub;
|
| private String id;
| }
|
|