详情接口

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

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStock
{
/// <summary>
/// 入库单详情
/// </summary>
public class InStockInfoResponse
{
/// <summary>
/// 创建人
/// </summary>
public string Creator { get; set; }
/// <summary>
/// 创建时间(入库时间)
/// </summary>
public string CreateTime { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string Operate { get; set; }
/// <summary>
/// 同步时间
/// </summary>
public string SyncTime { get; set; }
}
}