Pu Zhibing
昨天 d08fe17ae9056598aa82efb85ac81a893f4cdf36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
}