peternameyakj
2024-07-14 85037c73f8b16f4258a2af354cd162247700ffde
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
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @program: dabaogp
 * @description: 大宗交易审核表
 * @create: 2024-07-02 14:23
 **/
@Data
public class UserPositionCheckDz {
 
    @TableId(type = IdType.AUTO,value = "id")
    private Integer id;
    private Integer positionType;
    private String positionSn;
    private Integer userId;
    private String nickName;
    private Integer agentId;
    private String stockName;
    private String stockCode;
    private String stockGid;
    private String stockSpell;
    private String buyOrderId;
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date buyOrderTime;
    private BigDecimal buyOrderPrice;
    private String sellOrderId;
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date sellOrderTime;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private BigDecimal sellOrderPrice;
    //
    private BigDecimal profitTargetPrice;
    private BigDecimal stopTargetPrice;
    private String orderDirection;
    private Integer orderNum;
    private Integer orderLever;
    private BigDecimal orderTotalPrice;
    private BigDecimal orderFee;
    private BigDecimal orderSpread;
    private BigDecimal orderStayFee;
    private Integer orderStayDays;
    private BigDecimal profitAndLose;
    private BigDecimal allProfitAndLose;
    private Integer isLock;
    private String lockMsg;
    private String stockPlate;
    /*点差费金额*/
    private BigDecimal spreadRatePrice;
    /*追加保证金额*/
    private BigDecimal marginAdd;
 
    //0:待审核  1:成功 2:失败
    private Integer checkType = 0;
 
    private Integer dzId;
}