package com.sandu.ximon.admin.param;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class InterphoneHostParam {
|
|
/**
|
* 主机mac
|
*/
|
private String hostMac;
|
|
/**
|
* 主机ip
|
*/
|
private String hostIp;
|
|
/**
|
* 上报ActionURL记录
|
*/
|
private String url;
|
|
/**
|
* 主机地址
|
*/
|
private String hostAddress;
|
|
/**
|
*
|
*/
|
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;
|
|
}
|