入库单-接口优化

This commit is contained in:
tongfei
2023-10-30 11:05:21 +08:00
parent fd0bb092db
commit 32cdd97e57
4 changed files with 116 additions and 3 deletions

View File

@@ -13,5 +13,43 @@ namespace WMS.Web.Core.Dto
/// 来源单号
/// </summary>
public string SourceBillNo { get; set; }
/// <summary>
/// 入库类型
/// </summary>
public int? Type { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string Creator { get; set; }
/// <summary>
/// 创建时间(入库时间)
/// </summary>
public DateTime? CreateBeginDate { get; set; } = null;
/// <summary>
/// 创建时间(入库时间)
/// </summary>
public DateTime? CreateEndDate { get; set; } = null;
/// <summary>
/// 同步成功或者失败 null 就是未同步
/// </summary>
public bool? SuccessSync { get; set; }
/// <summary>
/// 供应商ID
/// </summary>
public int? SupplierId { get; set; }
/// <summary>
/// 组织ID
/// </summary>
public int? OrgId { get; set; }
/// <summary>
/// 物料编码
///</summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 仓库ID
/// </summary>
public int? StockId { get; set; }
}
}