zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using HH.WMS.Common;
using HH.WMS.Common.External;
using HH.WMS.Common.Response;
using HH.WMS.Entitys.External;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.BLL.External
{
    public class WmsApiForGzltBLL : WmsApiBaseBLL
    {
        public ExternalResponse InWorkArea(List<InWorkAreaEntity> inWorkAreaEntitys)
        {
            var logPara = LogType.LogPara("入作业区");
            Log.Detail(logPara, "InWorkArea接口请求参数:" + JsonConvert.SerializeObject(inWorkAreaEntitys));
            var result = InWorkArea(inWorkAreaEntitys, logPara);
            Log.Detail(logPara, "InWorkArea接口返回结果:" + JsonConvert.SerializeObject(result));
            return result;
        }
 
        public ExternalResponse OutWorkArea(List<OutWorkAreaEntity> outWorkAreaList)
        {
            var logPara = LogType.LogPara("出作业区");
            Log.Detail(logPara, "OutWorkArea接口请求参数:" + JsonConvert.SerializeObject(outWorkAreaList));
            var result = OutWorkArea(outWorkAreaList, logPara);
            Log.Detail(logPara, "OutWorkArea接口返回参数:" + JsonConvert.SerializeObject(result));
            return result;
        }
 
    }
}