11
wbc
2025-05-29 c846eaf61febfeba340213ee2d692182ea0ccb90
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)