刷新金蝶数据接口
This commit is contained in:
@@ -19,4 +19,11 @@ namespace WMS.Web.Core.Dto
|
||||
{
|
||||
public List<int> Ids { get; set; } = new List<int>();
|
||||
}
|
||||
/// <summary>
|
||||
/// 操作 string集合
|
||||
/// </summary>
|
||||
public class OperateStrRequest
|
||||
{
|
||||
public List<string> Ids { get; set; } = new List<string>();
|
||||
}
|
||||
}
|
||||
|
||||
29
src/WMS.Web.Core/Dto/OutStock/OutStockInfoResponse.cs
Normal file
29
src/WMS.Web.Core/Dto/OutStock/OutStockInfoResponse.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.OutStock
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库单详情
|
||||
/// </summary>
|
||||
public class OutStockInfoResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
public string Creator { get; set; }
|
||||
/// <summary>
|
||||
/// 操作人
|
||||
/// </summary>
|
||||
public string Operate { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间(出库时间)
|
||||
/// </summary>
|
||||
public string CreateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 同步时间
|
||||
/// </summary>
|
||||
public string SyncTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user