提交当前本机整理版本
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user