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