田源
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
48
49
50
51
52
53
54
55
56
57
58
59
package com.vci.client.portal.Formdesign.object;
 
import java.io.Serializable;
 
public class UIFMangerClientObject implements Serializable{
 
    /**
     * oid
     */
    private String id;
    /**
     * 业务对象
     */
    private String bt;
    /**
     * 上下文
     */
    private String uiContext;
    /**
     * UIxml
     */
    private String uixml;
    /**
     * btnxml
     */
    private String actionxml;
    
    public String getUiContext() {
        return uiContext;
    }
    public void setUiContext(String uiContext) {
        this.uiContext = uiContext;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getBt() {
        return bt;
    }
    public void setBt(String bt) {
        this.bt = bt;
    }
    public String getUixml() {
        return uixml;
    }
    public void setUixml(String uixml) {
        this.uixml = uixml;
    }
    public String getActionxml() {
        return actionxml;
    }
    public void setActionxml(String actionxml) {
        this.actionxml = actionxml;
    }
    
}