IT-KIMI_SHI\SINOIT.KIMI
2018-06-04 b12dfac6e495d6cf38df6b7e5222191f59762900
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
package frame.file;
 
import org.apache.poi.ss.format.CellFormatType;
 
import frame.data.Entity;
import frame.util.Util;
 
public class IOMappingItem implements IFileload{
    private String id;
    private String parentId;
    private String fromField;
    private String toField;
    private boolean updateIgnore;
    private boolean insertIgnore;
    private CellFormatType[] exportType;
    
    @Override
    public void initLoad(Entity entity) {
        // TODO Auto-generated method stub
        
    }
    //TODO  parseExportType  
    private CellFormatType[] parseExportType(String exportType) {
        return null;
    }
 
    public String getId() {
        return id;
    }
    public String getParentId() {
        return parentId;
    }
    public String getFromField() {
        return fromField;
    }
    public String getToField() {
        return toField;
    }
    public boolean isInsertIgnore() {
        return insertIgnore;
    }
    
    //TODO  CellFormatType
    public CellFormatType[] getExportType() {
        return exportType;
    }
    
}