From 8236caa8042288fcb9b584c21d6157f713183626 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 13 二月 2025 16:36:01 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/OperatorInfo.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/OperatorInfo.java b/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/OperatorInfo.java new file mode 100644 index 0000000..309c546 --- /dev/null +++ b/ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/OperatorInfo.java @@ -0,0 +1,52 @@ +package com.ruoyi.integration.drainage.model; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import javax.validation.constraints.Null; + +/** + * 基础设施运营商信息 + * @author zhibing.pu + * @Date 2025/1/21 11:49 + */ +@Data +public class OperatorInfo { + /** + * 运营商ID + */ + @NotNull + @JsonProperty("OperatorID") + private String operatorID; + /** + * 运营商名称 + */ + @NotNull + @JsonProperty("OperatorName") + private String operatorName; + /** + * 运营商电话1 + */ + @NotNull + @JsonProperty("OperatorTel1") + private String operatorTel1; + /** + * 运营商电话2 + */ + @Null + @JsonProperty("OperatorTel2") + private String operatorTel2; + /** + * 运营商注册地址 + */ + @Null + @JsonProperty("OperatorRegAddress") + private String operatorRegAddress; + /** + * 备注 + */ + @Null + @JsonProperty("OperatorNote") + private String operatorNote; +} -- Gitblit v1.7.1