xiejun
2024-11-01 0496aed6e04c5084f05ce1035ba9ec38e3d4e9c7
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.vci.ubcs.code.vo.webserviceModel.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 + '\'' +
                '}';
    }
}