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/2/19 9:39
|
*/
|
@Data
|
public class SuperviseQueryOperatorInfoResult {
|
/**
|
* 运营商ID
|
*/
|
@NotNull
|
@JsonProperty("OperatorID")
|
private String operatorID;
|
/**
|
* 运营商统一社会信用代码
|
*/
|
@NotNull
|
@JsonProperty("OperatorUSCID")
|
private String operatorUSCID;
|
/**
|
* 运营商名称
|
*/
|
@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;
|
}
|