1
zj
2025-04-30 4bb0b890438349a7cfd7ab2dc30999346a5acf58
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
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import lombok.Data;
 
/**
 * @TableName user_pendingorder
 */
@TableName(value ="user_pendingorder")
@Data
public class UserPendingorder implements Serializable {
    @TableId(type = IdType.AUTO,value = "id")
    private Integer id;
    private Integer positionType;//创位类型  1 挂单中  2撤销     0挂单成功
    private Integer hangingOrderType;//挂单方向 1.买入  2.卖出
    private String stockType;//股票类型
    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;
    private Date buyOrderTime;
    private BigDecimal buyOrderPrice;
    private String OrderId;
    private Date OrderTime;
    private BigDecimal OrderPrice;
    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;
    private Integer dzId;
    private String amountToBeCovered;
    private Integer newId;
    private static final long serialVersionUID = 1L;
}