111
啊鑫
3 小时以前 4db3ba3f84456c27fdd9be76ff76c17101270914
Controllers/QC/IpqcController.cs
@@ -349,4 +349,25 @@
        }
    }
    [HttpPost("selIpqcItemsByGw")]
    public ResponseResult SelIpqcItemsByGw([FromBody] dynamic query)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.SelIpqcItemsByGw(query);
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}