diff --git a/main/java/shkd/repc/recon/formplugin/TestDBFormPlugin.java b/main/java/shkd/repc/recon/formplugin/TestDBFormPlugin.java new file mode 100644 index 0000000..a60c645 --- /dev/null +++ b/main/java/shkd/repc/recon/formplugin/TestDBFormPlugin.java @@ -0,0 +1,24 @@ +package shkd.repc.recon.formplugin; + +import kd.bos.db.DB; +import kd.bos.db.DBRoute; +import kd.bos.form.events.AfterDoOperationEventArgs; +import kd.bos.form.plugin.AbstractFormPlugin; + +public class TestDBFormPlugin extends AbstractFormPlugin { + + @Override + public void afterDoOperation(AfterDoOperationEventArgs e) { + super.afterDoOperation(e); + if("qeug_btnok".equals(e.getOperateKey())){ + String dbnum = (String) this.getModel().getValue("qeug_dbnum");//标识 + String sql = (String) this.getModel().getValue("qeug_sqls");//sql语句 + try{ + DB.update(DBRoute.of(dbnum), sql,null); + }catch(Exception ex){ + this.getView().showMessage("执行失败:" + ex.getMessage()); + } + this.getView().showSuccessNotification("执行成功"); + } + } +} \ No newline at end of file