| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 运营商ID |
| | | */ |
| | | @NotNull |
| | | private String OperatorID; |
| | | @JsonProperty("OperatorID") |
| | | private String operatorID; |
| | | /** |
| | | * 运营商名称 |
| | | */ |
| | | @NotNull |
| | | private String OperatorName; |
| | | @JsonProperty("OperatorName") |
| | | private String operatorName; |
| | | /** |
| | | * 运营商电话1 |
| | | */ |
| | | @NotNull |
| | | private String OperatorTel1; |
| | | @JsonProperty("OperatorTel1") |
| | | private String operatorTel1; |
| | | /** |
| | | * 运营商电话2 |
| | | */ |
| | | @Null |
| | | private String OperatorTel2; |
| | | @JsonProperty("OperatorTel2") |
| | | private String operatorTel2; |
| | | /** |
| | | * 运营商注册地址 |
| | | */ |
| | | @Null |
| | | private String OperatorRegAddress; |
| | | @JsonProperty("OperatorRegAddress") |
| | | private String operatorRegAddress; |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @Null |
| | | private String OperatorNote; |
| | | @JsonProperty("OperatorNote") |
| | | private String operatorNote; |
| | | } |