zyy
2025-09-18 87a73c3b49c9203ab3c797c575b9c2b9dea10e7a
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.data.annotation.Transient;
 
import java.util.Date;
 
/**
 * @program: dabao
 * @description:
 * @create: 2024-04-28 16:58
 **/
@Data
public class OrderEchoOut {
 
    private Integer id;
 
    //基金id
    private String eid;
 
    //回报率
    private String returnOfRate;
 
    //买入时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Kolkata")
    private Date buyTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Kolkata")
    private Date endTime;
 
    //用户id
    private String userId;
 
    //买入金额
    private String money;
 
    //状态 1.进行中  2.已赎回
    private String state;
 
    //收益
    private String earnings;
 
    /**
     * 周期时间
     * */
    private String returnTime;
 
    /**
     * 标题
     * */
    private String title;
 
}