毛坯出库功能添加
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user