| | |
| | | { |
| | | 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; |
| | |
| | | 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); |