kyy
2025-10-16 6641af672fc78890f1f36f062337ec6129e86a06
MESApplication/Controllers/QC/MesOqcItemsDetect02Controller.cs
@@ -80,6 +80,29 @@
        }
    }
    //IqcQaSubmit
    [HttpPost("OqcQagetTable")]
    public ResponseResult OqcQagetTable(LLJDto rkjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var tbBillList = m.OqcQagetTable(rkjDto);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    [HttpPost("saveRemarksPid")]
    public ResponseResult saveRemarksPid([FromBody] LLJDto rkjDto)
    {
@@ -219,10 +242,8 @@
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var (item, totalCount) = m.GetPage(queryObj);
            var tbBillList =
                resultInfos.tbBillList = item;
            var tbBillList  = item;
            return new ResponseResult
            {
                status = 0,