田源
2024-03-07 4b4083fd73dc27ece42f4835483565eef0e4f608
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
package com.vci.corba.framework.data;
 
/**
 * Generated from IDL struct "LogInfo".
 *
 * @author JacORB IDL compiler V 3.9
 * @version generated at 2022-12-23 15:42:24
 */
 
public final class LogInfo
    implements org.omg.CORBA.portable.IDLEntity
{
    /** Serial version UID. */
    private static final long serialVersionUID = 1L;
    public LogInfo(){}
    public java.lang.String puid = "";
    public java.lang.String username = "";
    public java.lang.String truename = "";
    public java.lang.String userIp = "";
    public java.lang.String result = "";
    public java.lang.String content = "";
    public java.lang.String date = "";
    public java.lang.String type = "";
    public java.lang.String moduleName = "";
    public java.lang.String entityDesc = "";
    public java.lang.String property = "";
    public java.lang.String previousVal = "";
    public java.lang.String newVal = "";
    public java.lang.String logType = "";
    public LogInfo(java.lang.String puid, java.lang.String username, java.lang.String truename, java.lang.String userIp, java.lang.String result, java.lang.String content, java.lang.String date, java.lang.String type, java.lang.String moduleName, java.lang.String entityDesc, java.lang.String property, java.lang.String previousVal, java.lang.String newVal, java.lang.String logType)
    {
        this.puid = puid;
        this.username = username;
        this.truename = truename;
        this.userIp = userIp;
        this.result = result;
        this.content = content;
        this.date = date;
        this.type = type;
        this.moduleName = moduleName;
        this.entityDesc = entityDesc;
        this.property = property;
        this.previousVal = previousVal;
        this.newVal = newVal;
        this.logType = logType;
    }
}