package com.sandu.ximon.admin.param;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class InterphoneSubParam {
|
|
/**
|
* 子设备mac
|
*/
|
private String subMac;
|
|
/**
|
* 子设备ip
|
*/
|
private String subIp;
|
|
/**
|
* 子设备地址
|
*/
|
private String subAddress;
|
|
/**
|
*
|
*/
|
private LocalDateTime createtime;
|
|
/**
|
*
|
*/
|
private LocalDateTime updatetime;
|
|
/**
|
* sip服务器地址
|
*/
|
private String sipAddress;
|
|
/**
|
* sip服务器端口
|
*/
|
private String sipPort;
|
|
/**
|
* 用户名,显示名
|
*/
|
private String sipName;
|
|
/**
|
* 用户认证
|
*/
|
private String sipAuth;
|
|
/**
|
* 验证密码
|
*/
|
private String sipPassword;
|
|
/**
|
* 代理服务器地址
|
*/
|
private String proxyAddress;
|
|
/**
|
* 代理服务器端口
|
*/
|
private String proxyPort;
|
|
/**
|
* 代理用户
|
*/
|
private String proxyUser;
|
|
/**
|
* 代理密码
|
*/
|
private String proxyPassword;
|
}
|