package com.ruoyi.jianguan.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;
|
}
|