This commit is contained in:
2025-06-17 14:34:47 +08:00
parent 05cedd2457
commit 90bcfc9033
13 changed files with 204 additions and 27 deletions

View File

@@ -4,6 +4,17 @@ using System.Text;
namespace WMS.Web.Core.Dto.Erp
{
public class ErpMaterialDtoJian
{
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string Specifications { get; set; }
}
/// <summary>
/// 对应金蝶,物料信息
/// </summary>
@@ -60,5 +71,16 @@ namespace WMS.Web.Core.Dto.Erp
/// 是否启用批号管理
/// </summary>
public bool IsBatchManage { get; set; }
/// <summary>
/// 修改日期
/// </summary>
public DateTime? FModifyDate { get; set; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime? FCreateDate { get; set; }
}
}