提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+6 -2
View File
@@ -16,6 +16,8 @@ namespace NewMyFormDesigner
public string FrmKey { get; set; }
public string SQL { get; set; }
public string DllCoid { get; set; }
public int Modtype { get; set; }
public RunForm()
@@ -72,13 +74,15 @@ namespace NewMyFormDesigner
SqlParameter[] param =
{
new SqlParameter("@modid",SqlDbType.VarChar,100),
new SqlParameter("@modtype",SqlDbType.Int),
new SqlParameter("@operType",SqlDbType.Int),
pMsg,
returnValue
};
param[0].Value = modid;
param[1].Value = operType;
param[2].Value = "";
param[1].Value = Modtype;
param[2].Value = operType;
param[3].Value = "";
SqlHelper.ExecuteNonQuery(CommandType.StoredProcedure, "[P_System_AUTOCreateMod]", param);
msg = pMsg.Value + "";
return Convert.ToInt32(returnValue.Value.ToString());