| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 免费时长 |
| | | */ |
| | | @NotNull |
| | | private Integer FreeTime; |
| | | @JsonProperty("FreeTime") |
| | | private Integer freeTime; |
| | | /** |
| | | * 嘴阀占位费 |
| | | */ |
| | | @NotNull |
| | | private BigDecimal MaxFee; |
| | | @JsonProperty("MaxFee") |
| | | private BigDecimal maxFee; |
| | | /** |
| | | * 生效开始时间 |
| | | * yyyy-MM-dd HH:mm:ss |
| | | */ |
| | | @NotNull |
| | | private String EffectStartTime; |
| | | @JsonProperty("EffectStartTime") |
| | | private String effectStartTime; |
| | | /** |
| | | * 生效结束时间 |
| | | */ |
| | | @NotNull |
| | | private String EffectEndTime; |
| | | @JsonProperty("EffectEndTime") |
| | | private String effectEndTime; |
| | | /** |
| | | * 占位费价格 |
| | | */ |
| | | @NotNull |
| | | private List<PlaceHolderPrice> PlaceHolderPrices; |
| | | @JsonProperty("PlaceHolderPrices") |
| | | private List<PlaceHolderPrice> placeHolderPrices; |
| | | } |