62 changed files with 1466 additions and 1368 deletions
@ -1,12 +1,14 @@ |
|||
using System; |
|||
|
|||
namespace WmsWebApi.PPLan; |
|||
|
|||
public class ReturnResult |
|||
namespace WmsWebApi.PPLan |
|||
{ |
|||
|
|||
public class ReturnResult |
|||
{ |
|||
public char TYPE { get; set; } = 'S'; |
|||
|
|||
public string MESSAGE { get; set; } = "接收成功!"; |
|||
|
|||
public string REQUEST_SYSTEM { get; set; } = "WinWMS"; |
|||
} |
|||
} |
@ -1,12 +1,14 @@ |
|||
using System; |
|||
|
|||
namespace WmsWebApi.ProductRecieve; |
|||
|
|||
public class ReturnResult |
|||
namespace WmsWebApi.ProductRecieve |
|||
{ |
|||
|
|||
public class ReturnResult |
|||
{ |
|||
public char TYPE { get; set; } = 'S'; |
|||
|
|||
public string MESSAGE { get; set; } = "接收成功!"; |
|||
|
|||
public string REQUEST_SYSTEM { get; set; } = "WinWMS"; |
|||
} |
|||
} |
@ -1,12 +1,14 @@ |
|||
using System; |
|||
|
|||
namespace WmsWebApi.Purchase; |
|||
|
|||
public class ReturnResult |
|||
namespace WmsWebApi.Purchase |
|||
{ |
|||
|
|||
public class ReturnResult |
|||
{ |
|||
public char TYPE { get; set; } = 'S'; |
|||
|
|||
public string MESSAGE { get; set; } = "接收成功!"; |
|||
|
|||
public string REQUEST_SYSTEM { get; set; } = "WinWMS"; |
|||
} |
|||
} |
@ -1,12 +1,14 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.Boms; |
|||
|
|||
public interface IBomManager |
|||
namespace WmsWebApi.Boms |
|||
{ |
|||
|
|||
public interface IBomManager |
|||
{ |
|||
Task<WmsWebApiBOMDTO> AddAsync(WmsWebApiBOMDTO part); |
|||
|
|||
Task<WmsWebApiBom> AddBomAsync(WmsWebApiBom bom); |
|||
Task<WmsWebApiBomDetail> AddBomDetailAsync(List<WmsWebApiBomDetail> bomDetails); |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.OtherZll; |
|||
|
|||
public interface IOtherZllManager |
|||
namespace WmsWebApi.OtherZll |
|||
{ |
|||
|
|||
public interface IOtherZllManager |
|||
{ |
|||
Task<WmsWebApiOtherZLLDTO> AddAsync(WmsWebApiOtherZLLDTO dto); |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.PPlan; |
|||
|
|||
public interface IPPlanManager |
|||
namespace WmsWebApi.PPlan |
|||
{ |
|||
|
|||
public interface IPPlanManager |
|||
{ |
|||
Task<WmsWebApiPPLANDTO> AddAsync(WmsWebApiPPLANDTO pplan); |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.Parts; |
|||
|
|||
public interface IPartManager |
|||
namespace WmsWebApi.Parts |
|||
{ |
|||
|
|||
public interface IPartManager |
|||
{ |
|||
Task<WmsWebApiPARTDTO> AddAsync(WmsWebApiPARTDTO part); |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.Domain; |
|||
|
|||
public interface IProductRecieveManager |
|||
namespace WmsWebApi.Domain |
|||
{ |
|||
|
|||
public interface IProductRecieveManager |
|||
{ |
|||
Task<WmsWebApiProductRecieveDTO> AddAsync(WmsWebApiProductRecieveDTO part); |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.Purchase; |
|||
|
|||
public interface IPurchaseManager |
|||
namespace WmsWebApi.Purchase |
|||
{ |
|||
|
|||
public interface IPurchaseManager |
|||
{ |
|||
Task<WmsWebApiPURCHASEDTO> AddAsync(WmsWebApiPURCHASEDTO dto); |
|||
} |
|||
} |
@ -1,9 +1,10 @@ |
|||
using System.Collections.Generic; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.Domain; |
|||
namespace WmsWebApi.Domain { |
|||
|
|||
public interface IStockMoveManager |
|||
{ |
|||
Task<WmsWebApiStockMoveDTO> AddAsync(WmsWebApiStockMoveDTO part); |
|||
} |
|||
} |
@ -1,11 +1,12 @@ |
|||
using System; |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace WmsWebApi.TbOrfers; |
|||
namespace WmsWebApi.TbOrfers { |
|||
|
|||
public class TbOrder:BasicAggregateRoot<Guid> |
|||
public class TbOrder : BasicAggregateRoot<Guid> |
|||
{ |
|||
public string OrderNumber { get; set; } |
|||
|
|||
public int Status { get; set; } |
|||
} |
|||
} |
@ -1,9 +1,11 @@ |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace WmsWebApi.ZlldgbLogs; |
|||
|
|||
public interface IZlldgbLogManager |
|||
namespace WmsWebApi.ZlldgbLogs |
|||
{ |
|||
|
|||
public interface IZlldgbLogManager |
|||
{ |
|||
Task<ZlldgbLog> AddAsync(ZlldgbLog zlldcjLog); |
|||
Task<ZlldgbLog> CloseAsync(ZlldgbLog zlldcjLog); |
|||
} |
|||
} |
Loading…
Reference in new issue