package com.ruoyi.integration.api.elutong.model;
|
|
import lombok.Data;
|
|
@Data
|
public class OperatorInfo {
|
/**
|
* 运营商ID
|
* 组织机构代码
|
*/
|
private String operatorId;
|
/**
|
* 运营商名称
|
*/
|
private String operatorName;
|
/**
|
* 运营商客服电话1
|
*/
|
private String operatorTel1;
|
/**
|
* 运营商客服电话2
|
*/
|
private String operatorTel2;
|
/**
|
* 运营商注册地址
|
*/
|
private String operatorRegAddress;
|
/**
|
* 备注
|
*/
|
private String operatorNote;
|
}
|