zjh
2025-03-07 80808af74be9507f4bf0c126f58c52ae3054bb03
获取图纸接口部分代码提交
已修改1个文件
27 ■■■■■ 文件已修改
StandardPda/MESApplication/Controllers/QC/LljController.cs 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StandardPda/MESApplication/Controllers/QC/LljController.cs
@@ -273,4 +273,31 @@
            return ResponseResult.ResponseError(ex);
        }
    }
    //IqcQaSubmit
    [HttpPost("GetFileUrlByU9List")]
    public ResponseResult GetFileUrlByU9List(LLJDto rkjDto)
    {
        try
        {
            //dynamic resultInfos = new ExpandoObject();
            //var tbBillList =
            //    new LljService().IqcQaSubmit(rkjDto);
            //resultInfos.tbBillList = tbBillList;
            string[] fileUrls =
 {
    "https://new-service.oss-cn-hangzhou.aliyuncs.com/sheet-attachment/1728624575152_ty5VSi9R.png",
    "https://new-service.oss-cn-hangzhou.aliyuncs.com/sheet-attachment/1728624610583_EwIN55BL.pdf"
};
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = fileUrls
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}