Browse Source

...

Branch_PaiNaWeiSJob
xusc 4 months ago
parent
commit
20d1805f7f
  1. BIN
      .vs/ICSSoft.FromERP/v16/.suo
  2. 2
      ICSSoft.FromERP/HttpHelper.cs
  3. 2
      ICSSoft.FromERP/ICSAddStdWorkHourFromMES.cs
  4. 2
      ICSSoft.FromERP/ICSSoft.FromERP.csproj
  5. 15
      ICSSoft.FromERP/Model/ApiResult/AbpResultDto.cs
  6. 15
      ICSSoft.FromERP/Model/ApiResult/ErrorDto.cs
  7. 2
      ICSSoft.Test/Program.cs

BIN
.vs/ICSSoft.FromERP/v16/.suo

Binary file not shown.

2
ICSSoft.FromERP/HttpHelper.cs

@ -9,7 +9,7 @@ using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace ICS.Common.Helpers
namespace ICSSoft.FromERP
{
public class HttpHelper
{

2
ICSSoft.FromERP/ICSAddStdWorkHourFromMES.cs

@ -1,4 +1,4 @@
using ICS.Common.Helpers;

using Newtonsoft.Json;
using Quartz;
using System;

2
ICSSoft.FromERP/ICSSoft.FromERP.csproj

@ -137,6 +137,8 @@
<Compile Include="ICSSDN.cs" />
<Compile Include="ICSSendEmail.cs" />
<Compile Include="ICSWarehouse.cs" />
<Compile Include="Model\ApiResult\AbpResultDto.cs" />
<Compile Include="Model\ApiResult\ErrorDto.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ICSInventory.cs" />
<Compile Include="ICSMo.cs" />

15
ICSSoft.FromERP/Model/ApiResult/AbpResultDto.cs

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.FromERP.Model
{
public class AbpResultDto
{
public object Result { get; set; }
public bool Success { get; set; }
public ErrorDto Error { get; set; }
}
}

15
ICSSoft.FromERP/Model/ApiResult/ErrorDto.cs

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.FromERP.Model
{
public class ErrorDto
{
public int Code { get; set; }
public string Message { get; set; }
public string Details { get; set; }
}
}

2
ICSSoft.Test/Program.cs

@ -13,7 +13,7 @@ namespace ICSSoft.Test
//ICSVendor test = new ICSVendor();
//test.Execute();
IcsAutoMo2Lot4JWX test = new IcsAutoMo2Lot4JWX();
Class1 test = new Class1();
test.Execute();
}

Loading…
Cancel
Save