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
38
39
40
| package com.nq.pojo.reponse;
|
| import lombok.Data;
|
| @Data
| public class OrderEChoReponse {
|
| private Integer id;
| private String eid;
| /**
| * 收益率
| * */
| private String returnOfRate;
| /**
| * 买入时间
| * */
| private Long buyTime;
| /**
| * 发放时间 结束时间
| * */
| private Long endTime;
| /**
| * 购买人名字
| * */
| private String userId;
| /**
| * 购买的金额
| * */
| private String money;
| /**
| * 结算金额
| * */
| private String state;
|
| private String title;
|
| private String phone;
|
| private String earnings;
| }
|
|