You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.2 KiB
C#
86 lines
2.2 KiB
C#
10 months ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using SlnMesnac.Model.dto;
|
||
|
|
||
|
namespace SlnMesnac.Controllers;
|
||
|
|
||
|
/// <summary>
|
||
|
/// ingredientsChenck 投料校验
|
||
|
/// </summary>
|
||
|
[Route("api/[controller]")]
|
||
|
[ApiController]
|
||
|
public class IngCheckController
|
||
|
{
|
||
|
private ILogger<IngCheckController> _logger;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="logger"></param>
|
||
|
public IngCheckController(ILogger<IngCheckController> logger)
|
||
|
{
|
||
|
_logger = logger;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 大料投料校验
|
||
|
/// </summary>
|
||
|
/// <param name="ingredientInfo"></param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPut("BigMaterial")]
|
||
|
public ApiResponse BigMaterialCheck(IngredientInfo ingredientInfo)
|
||
|
{
|
||
|
var result = new ApiResponse();
|
||
|
|
||
|
try
|
||
|
{
|
||
|
if (ingredientInfo != null)
|
||
|
{
|
||
|
result.SetSuccess($"校验成功,时间:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
result.SetSuccess($"校验失败,缺少必要参数,时间:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
Console.WriteLine(e);
|
||
|
result.SetException(e,"小料投料校验异常");
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 小料投料校验
|
||
|
/// </summary>
|
||
|
/// <param name="ingredientInfo"></param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPut("SmallMaterial")]
|
||
|
public ApiResponse SmallMaterialCheck(IngredientInfo ingredientInfo)
|
||
|
{
|
||
|
|
||
|
var result = new ApiResponse();
|
||
|
|
||
|
try
|
||
|
{
|
||
|
if (ingredientInfo != null)
|
||
|
{
|
||
|
result.SetSuccess($"校验成功,时间:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
result.SetSuccess($"校验失败,缺少必要参数,时间:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
Console.WriteLine(e);
|
||
|
result.SetException(e,"小料投料校验异常");
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
}
|