From 48e061f462dba5b11a0426206075908aef4aa6f4 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期五, 22 十一月 2024 15:04:08 +0800 Subject: [PATCH] 11 --- 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