1
zj
55 mins ago d615fc515fc52d6ed970c11d59a017e48de4be32
src/main/java/com/nq/vo/position/UserPositionVO.java
@@ -59,12 +59,22 @@
    private Integer orderStayDays;
    private BigDecimal profitAndLose;
    private BigDecimal allProfitAndLose;
    private String allProfitAndLoseStr;
    private String now_price;
    private String stockPlate;
    /*点差费金额*/
    private BigDecimal spreadRatePrice;
    /*追加保证金额*/
    private BigDecimal marginAdd;
    private Integer status;
    private Integer lockDays;
    /** 下次递延费扣款时间戳(毫秒) */
    private Long nextStayFeeTime;
    /** 距下次递延费扣款剩余秒数 */
    private Long stayFeeCountdownSec;
    /** 节假日休市开关是否开启(影响递延费倒计时与扣费日) */
    private Boolean respectHoliday;
    public void setPositionType(Integer positionType) {
        this.positionType = positionType;
@@ -180,6 +190,14 @@
    public void setStockPlate(String stockPlate) {
        this.stockPlate = stockPlate;
    }
    public String getAllProfitAndLoseStr() {
        return allProfitAndLoseStr;
    }
    public void setAllProfitAndLoseStr(String allProfitAndLoseStr) {
        this.allProfitAndLoseStr = allProfitAndLoseStr;
    }
    public boolean equals(Object o) {
@@ -509,4 +527,44 @@
    public void setMarginAdd(BigDecimal marginAdd) {
        this.marginAdd = marginAdd;
    }
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Integer status) {
        this.status = status;
    }
    public Integer getLockDays() {
        return lockDays;
    }
    public void setLockDays(Integer lockDays) {
        this.lockDays = lockDays;
    }
    public Long getNextStayFeeTime() {
        return nextStayFeeTime;
    }
    public void setNextStayFeeTime(Long nextStayFeeTime) {
        this.nextStayFeeTime = nextStayFeeTime;
    }
    public Long getStayFeeCountdownSec() {
        return stayFeeCountdownSec;
    }
    public void setStayFeeCountdownSec(Long stayFeeCountdownSec) {
        this.stayFeeCountdownSec = stayFeeCountdownSec;
    }
    public Boolean getRespectHoliday() {
        return respectHoliday;
    }
    public void setRespectHoliday(Boolean respectHoliday) {
        this.respectHoliday = respectHoliday;
    }
}