毛坯出库功能添加

This commit is contained in:
2025-10-15 14:36:29 +08:00
parent 893bffa431
commit 52e8ae5b40
4 changed files with 124 additions and 1 deletions

View File

@@ -104,4 +104,23 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
/// <summary>
/// 毛坯库存出库
/// </summary>
public class BlankInventoryOutboundDto
{
public List<ResultionPackageCodeDto> PackageList { get; set; } = new List<ResultionPackageCodeDto>();
// 1-返工件 对应数据库type=2 0-非返工件 对应数据库type=1
public int IsBack { get; set; } = 1;
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}