1
lu
2024-11-30 d4a7c6729238148e9849081740e47e044eb9d313
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);