1
lu
2024-11-13 13e0b579eb4ad6151e2f27b822837be81d3f6143
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);