using AngleSharp.Common;
|
using Masuit.Tools;
|
using Newtonsoft.Json;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Common;
|
using WIDESEA_Common.MES;
|
using WIDESEA_Common.MES.Request;
|
using WIDESEA_Core;
|
using WIDESEA_Core.Const;
|
using WIDESEA_Core.Helper;
|
using WIDESEAWCS_BasicInfoService;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEA_StoragIntegrationServices
|
{
|
/// <summary>
|
/// 锁车上报
|
/// </summary>
|
public partial class MESService
|
{
|
public WebResponseContent Lock(object jsondata)
|
{
|
WebResponseContent content = new WebResponseContent();
|
try
|
{
|
|
|
LogFactory.GetLog("锁车上报").Info(true, $"\r\r--------------------------------------");
|
LogFactory.GetLog("锁车上报").Info(true, jsondata.ToJsonString());
|
|
return content;
|
}
|
catch (Exception ex)
|
{
|
return content.Error(ex.Message);
|
}
|
}
|
}
|
}
|