2023-05-04

This commit is contained in:
2023-05-04 17:51:13 +08:00
parent bd928dabfe
commit 2f823b54b2
9 changed files with 1827 additions and 30 deletions
@@ -360,5 +360,24 @@ namespace FineUIPro.Web.ZHGL.ServerCheck
}
#endregion
#endregion
/// <summary>
/// 从集团获取
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnGet_Click(object sender, EventArgs e)
{
var returnValue = CNCECHSSEGetWebService.getCheck_CheckRectify();
if (returnValue.code == 1)
{
ShowNotify(returnValue.message, MessageBoxIcon.Success);
}
else
{
Alert.ShowInTop(returnValue.message, MessageBoxIcon.Success);
}
}
}
}