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 SubRequest implements Serializable {
| private static final long serialVersionUID = -5661972007013485438L;
| private String sub;
|
| private String id;
|
| }
|
|