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
package frame.file;
 
import frame.expression.VariantContext;
 
public class FileIo extends IOProcessor {
    
    public static String TypeCode_Import = "import";
    public static String TypeCode_DB = "db";
    public static String TypeCode_Output = "output";
 
    
     private String id;
     private String fromName;
     private String toName;
     private String typeCode;
     private String mappingId;
     private boolean distinctSelect;
     private boolean standardMove;
     private String[] filterFieldValues;
     private String[] keyFieldPairs;
     private AppendMode appendMode;
     private DeleteMode deleteMode;
     private Direction direction;
     private int fromRowNo;
     private int toRowNo;
 
     private TableMeta fromMeta;
     private TableMeta toMeta;
     private IOMapping mapping;
     private IOMappingRuntime mappingRuntime;
     private ISQLContext context;
 
    
    @Override
    public VariantContext createContext(UploadResult result) {
        // TODO Auto-generated method stub
        return null;
    }
 
}