|
|
@@ -51,7 +51,7 @@ public class MESHelperServiceImpl implements MESHelperService {
|
|
|
private String username;
|
|
|
|
|
|
@Override
|
|
|
- public Map<Object,Object> TestInsertLog(String data){
|
|
|
+ public Map<Object,Object> DeviceRunLog1(String data){
|
|
|
Map<Object, Object> rmap = new HashMap<Object, Object>();
|
|
|
baseDao.execute("insert into EISDATA(ed_id,ed_data,ed_indate)values(EISDATA_seq.nextval,?,sysdate)",data);
|
|
|
rmap.put("result","OK");
|
|
|
@@ -59,6 +59,22 @@ public class MESHelperServiceImpl implements MESHelperService {
|
|
|
return rmap;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public Map<Object,Object> DeviceRunLog2(String data){
|
|
|
+ Map<Object, Object> rmap = new HashMap<Object, Object>();
|
|
|
+ baseDao.execute("insert into EISDATA(ed_id,ed_data,ed_indate)values(EISDATA_seq.nextval,?,sysdate)",data);
|
|
|
+ rmap.put("result","OK");
|
|
|
+ rmap.put("message", "OK,写入数据成功");
|
|
|
+ return rmap;
|
|
|
+ }
|
|
|
+ @Override
|
|
|
+ public Map<Object,Object> DeviceRunLog3(String data){
|
|
|
+ Map<Object, Object> rmap = new HashMap<Object, Object>();
|
|
|
+ baseDao.execute("insert into EISDATA(ed_id,ed_data,ed_indate)values(EISDATA_seq.nextval,?,sysdate)",data);
|
|
|
+ rmap.put("result","OK");
|
|
|
+ rmap.put("message", "OK,写入数据成功");
|
|
|
+ return rmap;
|
|
|
+ }
|
|
|
@Override
|
|
|
public Map<Object,Object> UploadReelInfo(String data) {
|
|
|
Map<Object, Object> rmap = new HashMap<Object, Object>();
|