wangting
2024-12-26 fa261e8c1220b31af54e8167e4de9c3320b1af27
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
package com.vci.client.framework.appConfig;
 
import com.vci.client.framework.appConfig.object.AppConfigDetailObject;
import com.vci.client.ui.swing.components.VCIJPanel;
import com.vci.client.ui.swing.components.table.VCIJTablePanel;
 
public class AppCofnigDetailPanel extends VCIJPanel{
 
    /**
     * 
     */
    private static final long serialVersionUID = 538726303706205608L;
 
    private VCIJTablePanel<AppConfigDetailObject> tablePanel = null;
    private AppConfigDetailDataProvider dataProvider = null;
    private String categoryId = "";
    public AppCofnigDetailPanel(String categoryId) {
        this.categoryId = categoryId;
        init();
    }
    
    private void init(){
        
    }
 
    public String getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId;
    }
    
    
}