sjz
7 天以前 678e995cca52a9072c0a92a805060b4969d1010f
MESApplication/Controllers/QC/SJController.cs
@@ -41,14 +41,19 @@
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var tbBillList =
                new SJService().getPage(queryObj);
            var (items, totalCount) = new SJService().getPage(queryObj);
            var tbBillList = items;
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
                data = resultInfos,
                TotalCount = totalCount
            };
        }
        catch (Exception ex)