From b2ae2d8e16c6f8daeb5853d3f31d6895f1bf8a3a Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期六, 30 十一月 2024 15:45:28 +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