11
啊鑫
3 天以前 646ac6f3e1e77d0481e46ea15a6eb6db4ecba065
11
已修改2个文件
24 ■■■■ 文件已修改
MES.Service/service/QC/RKJService.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
MESApplication/Controllers/QC/RKJController.cs 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
MES.Service/service/QC/RKJService.cs
@@ -59,10 +59,6 @@
    public List<RkDaa002> GetDaa001s(string lineNo)
    {
        var db = SqlSugarHelper.GetInstance();
        // return db.Queryable<RKJDaa001>()
        //     .Where(t => t.LineNo == lineNo)
        //     .OrderBy(t => t.BillNo, OrderByType.Desc)
        //     .ToList();
        return null;
    }
MESApplication/Controllers/QC/RKJController.cs
@@ -388,4 +388,24 @@
            return ResponseResult.ResponseError(ex);
        }
    }
    [HttpPost("IqcQaSubmit")]
    public ResponseResult IqcQaSubmit(RKJDto rkjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            return new ResponseResult
            {
                status = 0,
                message = "提交成功",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}