Controllers/QC/LljController.cs
@@ -35,6 +35,28 @@
        }
    }
    [HttpPost("getBadge")]
    public ResponseResult getBadge()
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var item = new LljService().getBadge();
            var tbBillList =
                resultInfos.tbBillList = item;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    [HttpPost("setJYItem")]
    public ResponseResult setJYItem([FromBody] JObject data)
@@ -94,7 +116,7 @@
            dynamic resultInfos = new ExpandoObject();
            var tbBillList =
                new LljService().GetItems(releaseNo,
                    Convert.ToDecimal(id));
                    id);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
@@ -273,4 +295,51 @@
            return ResponseResult.ResponseError(ex);
        }
    }
    //删除特征值
    [HttpPost("deleteDetail13")]
    public ResponseResult deleteDetail13(LLJDto rkjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var tbBillList = new LljService().deleteDetail13(rkjDto);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    //更新不合格描述
    [HttpPost("updateRemarks")]
    public ResponseResult updateRemarks(LLJDto rkjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var tbBillList = new LljService().updateRemarks(rkjDto);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}