package com.artfess.security.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * 涉密机器关联用户对象 * * @author css * */ @ApiModel public class PersonloginlimitVo { @ApiModelProperty(name = "id", notes = "id") private String id; @ApiModelProperty(name = "userId", notes = "用户Id") private String userId; @ApiModelProperty(name = "account", notes = "登录帐号(更新时不会更新)", required = true) private String account; @ApiModelProperty(name = "fullname", notes = "用户名") private String fullname; @ApiModelProperty(name = "userNumber", notes = "工号") private String userNumber; @ApiModelProperty(name = "machineId", notes = "设备_ID") private String machineId; @ApiModelProperty(value = "设备编码") private String code; @ApiModelProperty(value = "设备名称") private String name; @ApiModelProperty(value = "IP地址") private String ip; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getAccount() { return account; } public void setAccount(String account) { this.account = account; } public String getFullname() { return fullname; } public void setFullname(String fullname) { this.fullname = fullname; } public String getUserNumber() { return userNumber; } public void setUserNumber(String userNumber) { this.userNumber = userNumber; } public String getMachineId() { return machineId; } public void setMachineId(String machineId) { this.machineId = machineId; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getIp() { return ip; } public void setIp(String ip) { this.ip = ip; } @Override public String toString() { return "PersonloginlimitVo{" + "id='" + id + '\'' + ", userId='" + userId + '\'' + ", account='" + account + '\'' + ", fullname='" + fullname + '\'' + ", userNumber='" + userNumber + '\'' + ", machineId='" + machineId + '\'' + ", code='" + code + '\'' + ", name='" + name + '\'' + ", ip='" + ip + '\'' + '}'; } }