| package com.ruoyi.integration.drainage.model; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotNull; | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| /** | 
|  * 占位费信息 | 
|  * @author zhibing.pu | 
|  * @Date 2025/1/26 9:29 | 
|  */ | 
| @Data | 
| public class PlaceHolder { | 
|     /** | 
|      * 免费时长 | 
|      */ | 
|     @NotNull | 
|     @JsonProperty("FreeTime") | 
|     private Integer freeTime; | 
|     /** | 
|      * 嘴阀占位费 | 
|      */ | 
|     @NotNull | 
|     @JsonProperty("MaxFee") | 
|     private BigDecimal maxFee; | 
|     /** | 
|      * 生效开始时间 | 
|      * yyyy-MM-dd HH:mm:ss | 
|      */ | 
|     @NotNull | 
|     @JsonProperty("EffectStartTime") | 
|     private String effectStartTime; | 
|     /** | 
|      * 生效结束时间 | 
|      */ | 
|     @NotNull | 
|     @JsonProperty("EffectEndTime") | 
|     private String effectEndTime; | 
|     /** | 
|      * 占位费价格 | 
|      */ | 
|     @NotNull | 
|     @JsonProperty("PlaceHolderPrices") | 
|     private List<PlaceHolderPrice> placeHolderPrices; | 
| } |