| | |
| | | }; |
| | | |
| | | string procedureName = "prc_pda_scbg"; |
| | | int res = DbHelperSQL.RunProcedure_NonQuery(procedureName, parameters); |
| | | int res = DB.DbHelperSQL.RunProcedure_NonQuery(procedureName, parameters); |
| | | |
| | | // Retrieve output parameters with proper type conversion |
| | | var po_outMsg = parameters[2].Value?.ToString() ?? string.Empty; |
| | |
| | | // 存储过程名称 |
| | | string procedureName = "prc_pda_scbg_submit"; |
| | | // 执行存储过程 |
| | | int res = DbHelperSQL.RunProcedure_NonQuery(procedureName, parameters); |
| | | int res = DB.DbHelperSQL.RunProcedure_NonQuery(procedureName, parameters); |
| | | |
| | | // 获取输出参数值(带类型转换) |
| | | var outMsg = parameters[0].Value?.ToString() ?? string.Empty; // 返回消息 |