田源
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
package com.vci.corba.framework.data;
 
/**
 * Generated from IDL struct "FuncOperationInfo".
 *
 * @author JacORB IDL compiler V 3.9
 * @version generated at 2022-12-23 15:42:24
 */
 
public final class FuncOperationInfo
    implements org.omg.CORBA.portable.IDLEntity
{
    /** Serial version UID. */
    private static final long serialVersionUID = 1L;
    public FuncOperationInfo(){}
    public java.lang.String id = "";
    public java.lang.String funcId = "";
    public java.lang.String operId = "";
    public java.lang.String operName = "";
    public java.lang.String operIndentify = "";
    public java.lang.String operAlias = "";
    public java.lang.String operDesc = "";
    public int number;
    public int isValid;
    public FuncOperationInfo(java.lang.String id, java.lang.String funcId, java.lang.String operId, java.lang.String operName, java.lang.String operIndentify, java.lang.String operAlias, java.lang.String operDesc, int number, int isValid)
    {
        this.id = id;
        this.funcId = funcId;
        this.operId = operId;
        this.operName = operName;
        this.operIndentify = operIndentify;
        this.operAlias = operAlias;
        this.operDesc = operDesc;
        this.number = number;
        this.isValid = isValid;
    }
}