详情接口

This commit is contained in:
tongfei
2023-11-15 15:50:49 +08:00
parent 92fff97981
commit db74dc89df
9 changed files with 231 additions and 96 deletions

View File

@@ -39,6 +39,16 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public bool? SuccessSync { get; set; }
/// <summary>
/// 操作人
/// </summary>
public int OperateId { get; set; }
/// <summary>
/// 同步时间
/// </summary>
public DateTime? SyncTime { get; set; }
/// <summary>
/// 明细
/// </summary>

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.InStock;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Entitys;
@@ -27,5 +28,12 @@ namespace WMS.Web.Domain.Infrastructure
/// <param name="isTransaction"></param>
/// <returns></returns>
Task<InStock> Add(InStock entity, bool isTransaction = true);
/// <summary>
/// 详情
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
Task<InStockInfoResponse> GetInfo(int id);
}
}