package com.vci.ubcs.code.vo.universalInter.apply;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
|
@XStreamAlias("user")
|
public class UserVO {
|
/**
|
* 创建/更改人账号
|
*/
|
@XStreamAsAttribute
|
private String userName;
|
/**
|
* 创建/更改人显示名称
|
*/
|
@XStreamAsAttribute
|
private String trueName;
|
/**
|
* 创建/更改人操作机器ip
|
*/
|
@XStreamAsAttribute
|
private String ip;
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getTrueName() {
|
return trueName;
|
}
|
|
public void setTrueName(String trueName) {
|
this.trueName = trueName;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
@Override
|
public String toString() {
|
return "UserVO{" +
|
"userName='" + userName + '\'' +
|
", trueName='" + trueName + '\'' +
|
", ip='" + ip + '\'' +
|
'}';
|
}
|
}
|