From 99c400da6cb8fc1e6349599a31ff79778d807a33 Mon Sep 17 00:00:00 2001 From: yuyubo <1870149533@qq.com> Date: Wed, 16 Jul 2025 17:49:37 +0800 Subject: [PATCH] 1 --- .../Response/JackYun/CreateAndStockinResp.cs | 22 +++++++++---------- ...JackyunInventoryMovementView1Repository.cs | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Reportapi/MyCode.Project.Domain/Message/Response/JackYun/CreateAndStockinResp.cs b/Reportapi/MyCode.Project.Domain/Message/Response/JackYun/CreateAndStockinResp.cs index e4db68e..3324c95 100644 --- a/Reportapi/MyCode.Project.Domain/Message/Response/JackYun/CreateAndStockinResp.cs +++ b/Reportapi/MyCode.Project.Domain/Message/Response/JackYun/CreateAndStockinResp.cs @@ -12,57 +12,57 @@ namespace MyCode.Project.Domain.Message.Response.JackYun /// /// [单据号] /// - public string relDataId; + public string relDataId { get; set; } /// /// [单据行号] /// - public string relDetailId; + public string relDetailId { get; set; } /// /// [变动方向] /// - public string type; + public string type { get; set; } /// /// [SKU] /// - public string outSkuCode; + public string outSkuCode { get; set; } /// /// [BARCODE] /// - public string skuBarcode; + public string skuBarcode { get; set; } /// /// [单位] /// - public string unitName; + public string unitName { get; set; } /// /// [数量] /// - public decimal skuCount; + public decimal skuCount { get; set; } /// /// [仓库] /// - public string inWarehouseCode; + public string inWarehouseCode { get; set; } /// /// [过账日期] /// - public DateTime applyDate; + public DateTime applyDate { get; set; } /// /// [备注] /// - public string rowRemark; + public string rowRemark { get; set; } /// /// [status] /// - public int status; + public int status { get; set; } } } diff --git a/Reportapi/MyCode.Project.Repositories/WMStoJackyunInventoryMovementView1Repository.cs b/Reportapi/MyCode.Project.Repositories/WMStoJackyunInventoryMovementView1Repository.cs index 3430b16..01f3564 100644 --- a/Reportapi/MyCode.Project.Repositories/WMStoJackyunInventoryMovementView1Repository.cs +++ b/Reportapi/MyCode.Project.Repositories/WMStoJackyunInventoryMovementView1Repository.cs @@ -25,7 +25,7 @@ namespace MyCode.Project.Repositories public List GetInventoryMovement() { string sql = $@" - SELECT [单据号] AS [relDataId] + SELECT [单据号] AS relDataId ,[单据行号] AS [relDetailId] ,[变动方向] AS [type] ,[SKU] AS [outSkuCode]