仓库-毛坯仓库功能

This commit is contained in:
2024-05-14 10:16:18 +08:00
parent b4039d0b49
commit dbd70442ed
4 changed files with 112 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ namespace ZR.Model.MES.wms.Dto
/// <summary>
/// 毛坯库存表查询对象
/// </summary>
public class WmBlankInventoryQueryDto : PagerInfo
public class WmBlankInventoryQueryDto : PagerInfo
{
public string BlankNum { get; set; }
public int? Type { get; set; }
@@ -66,8 +66,19 @@ namespace ZR.Model.MES.wms.Dto
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
/// <summary>
/// 毛坯库存同步对象
/// </summary>
public class WmBlankInventorySynchronousDto
{
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}