| | |
| | | |
| | | private Integer status; |
| | | private Integer lockDays; |
| | | /** 下次递延费扣款时间戳(毫秒) */ |
| | | private Long nextStayFeeTime; |
| | | /** 距下次递延费扣款剩余秒数 */ |
| | | private Long stayFeeCountdownSec; |
| | | /** 节假日休市开关是否开启(影响递延费倒计时与扣费日) */ |
| | | private Boolean respectHoliday; |
| | | |
| | | public void setPositionType(Integer positionType) { |
| | | this.positionType = positionType; |
| | |
| | | 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; |
| | | } |
| | | } |