From 13e0b579eb4ad6151e2f27b822837be81d3f6143 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期三, 13 十一月 2024 08:10:48 +0800
Subject: [PATCH] 1

---
 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