zyf
2025-10-30 2577a348d234c714ccb9195b62d2637f8baa5b55
MESApplication/Controllers/QC/XJController.cs
@@ -60,13 +60,14 @@
    //getLine
    [HttpPost("getLineAll")]
    public ResponseResult getLineAll()
    public ResponseResult getLineAll([FromBody] JObject data)
    {
        try
        {
            string UserNo = data["userNo"].ToString();
            dynamic resultInfos = new ExpandoObject();
            var tbBillList =
                new XJService().getLineAll();
                new XJService().getLineAll(UserNo);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {