ces
This commit is contained in:
parent
15c8dcc302
commit
52f61a4308
|
@ -2,8 +2,10 @@ package com.hzya.frame;
|
|||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.execsql.service.IExecSqlService;
|
||||
import com.hzya.frame.plugin.mdmDistribute.plugin.MdmModulePluginInitializer;
|
||||
import com.hzya.frame.plugin.seeyonExt.plugin.SeeyonExtPluginInitializer;
|
||||
import com.hzya.frame.seeyon.service.ISeeyonExtService;
|
||||
import com.hzya.frame.util.AESUtil;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
@ -26,6 +28,22 @@ public class temButtom {
|
|||
SeeyonExtPluginInitializer seeyonExtPluginInitializer;
|
||||
@Resource
|
||||
MdmModulePluginInitializer mdmModulePluginInitializer;
|
||||
@Resource
|
||||
private IExecSqlService executionService;
|
||||
@Resource
|
||||
private ISeeyonExtService seeyonExtService;
|
||||
|
||||
@Test
|
||||
public void execSqlTest(){
|
||||
String sql = "update formmain_025 set ";
|
||||
try {
|
||||
// executionService.execUpdateSql(sql,"abc");
|
||||
//seeyonExtService.updateYdcForm("update formmain_0229 set field0002 = '10241' where field0001 = 'GYSXZ-20240709003'");
|
||||
System.out.println("11");
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
@Test
|
||||
public void seeyonExtTest(){
|
||||
JSONObject jsonStr = new JSONObject();
|
||||
|
|
Loading…
Reference in New Issue