From 05731195c2c3d5adcbefd2bc18f12ebe84b0d68a Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期一, 02 十二月 2024 09:49:54 +0800 Subject: [PATCH] 其它业务 --- DevApp/Gs.DevApp/UserControl/ShowLogcs.cs | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/DevApp/Gs.DevApp/UserControl/ShowLogcs.cs b/DevApp/Gs.DevApp/UserControl/ShowLogcs.cs index 8c20122..87eb360 100644 --- a/DevApp/Gs.DevApp/UserControl/ShowLogcs.cs +++ b/DevApp/Gs.DevApp/UserControl/ShowLogcs.cs @@ -16,8 +16,11 @@ { public partial class ShowLogcs : DevExpress.XtraEditors.XtraForm { - public ShowLogcs() + + public string guidKey; + public ShowLogcs(string _guidKey) { + this.guidKey = _guidKey; InitializeComponent(); getPageList(1, UtilityHelper.GetPageSize()); pageBar1.PagerEvent += PageBar1_PagerEvent; @@ -46,6 +49,7 @@ private void getPageList(int curPage, int pageSize) { var _sbSqlWhere = new StringBuilder(); + _sbSqlWhere.Append(" and ABT_GUID='"+this.guidKey + "'"); var pgq = new PageQueryModel(curPage, pageSize, "OPERATION_TIME", "desc", "", _sbSqlWhere.ToString()); var json = JsonConvert.SerializeObject(pgq); -- Gitblit v1.9.3