ing
This commit is contained in:
parent
1544cd91c1
commit
a9113a6507
|
@ -1,11 +1,13 @@
|
|||
package com.loafle.overflow.module.sensorconfig.model;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* MappingInfo
|
||||
*/
|
||||
public class MappingInfo {
|
||||
private String parseDirection;
|
||||
private String[] arrayColumns;
|
||||
private String[] keyColumns;
|
||||
private List<String> arrayColumns;
|
||||
private List<String> keyColumns;
|
||||
private String valueColumn;
|
||||
}
|
|
@ -1,9 +1,15 @@
|
|||
package com.loafle.overflow.module.sensorconfig.model;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* SensorConfig
|
||||
*/
|
||||
public class SensorConfig {
|
||||
|
||||
|
||||
private long id;
|
||||
private String configID;
|
||||
private Target target;
|
||||
private Schedule schedule;
|
||||
private Crawler crawler;
|
||||
private List<Item> items;
|
||||
}
|
|
@ -6,6 +6,6 @@ import java.util.Map;
|
|||
* Target
|
||||
*/
|
||||
public class Target {
|
||||
private Map<String, String> auth;
|
||||
private Map<String, Object> auth;
|
||||
private Connection connection;
|
||||
}
|
Loading…
Reference in New Issue
Block a user