From d615fc515fc52d6ed970c11d59a017e48de4be32 Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Tue, 16 Jun 2026 16:43:58 +0800
Subject: [PATCH] 1

---
 src/main/java/com/nq/vo/position/UserPositionVO.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/nq/vo/position/UserPositionVO.java b/src/main/java/com/nq/vo/position/UserPositionVO.java
index 3c6af15..35b9a5d 100644
--- a/src/main/java/com/nq/vo/position/UserPositionVO.java
+++ b/src/main/java/com/nq/vo/position/UserPositionVO.java
@@ -67,6 +67,15 @@
     /*追加保证金额*/
     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;
     }
@@ -518,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;
+    }
 }

--
Gitblit v1.9.3