1
zj
5 hours ago d615fc515fc52d6ed970c11d59a017e48de4be32
src/main/java/com/nq/vo/position/UserPositionVO.java
@@ -69,6 +69,12 @@
    private Integer status;
    private Integer lockDays;
    /** 下次递延费扣款时间戳(毫秒) */
    private Long nextStayFeeTime;
    /** 距下次递延费扣款剩余秒数 */
    private Long stayFeeCountdownSec;
    /** 节假日休市开关是否开启(影响递延费倒计时与扣费日) */
    private Boolean respectHoliday;
    public void setPositionType(Integer positionType) {
        this.positionType = positionType;
@@ -537,4 +543,28 @@
    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;
    }
}