zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.gear.customer.swx.vo.response;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gear.common.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class SwxBuyOptionsInfo {
 
    /** $column.columnComment */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
 
    /** 期权id */
    @Excel(name = "期权id")
    private String optionsId;
 
    /** $column.columnComment */
    @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
    private String userId;
 
    /** $column.columnComment */
    @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
    private String orderId;
 
    /** 状态 */
    @Excel(name = "状态")
    private Integer status;
 
    /** 买涨/买跌 */
    @Excel(name = "买涨/买跌")
    private Integer type;
 
    /** 最终结果 */
    @Excel(name = "最终结果")
    private Integer resultType;
 
    /** 最终价格(生成) */
    @Excel(name = "最终价格" , readConverterExp = "生=成")
    private BigDecimal endPrice;
 
    /** 购入价格 */
    @Excel(name = "购入价格")
    private BigDecimal buyPrice;
 
    /** 购入金额 */
    @Excel(name = "购入金额")
    private BigDecimal amount;
 
    /** 时限 */
    @Excel(name = "时限")
    private Integer limitTime;
 
    /** 利润点 */
    @Excel(name = "利润点")
    private BigDecimal rate;
 
    /** 总收益 */
    @Excel(name = "总收益")
    private BigDecimal income;
 
    private String marketId;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
    private String marketName;
 
    private String marketCode;
 
    private String marketType;
}