This commit is contained in:
tongfei
2024-04-11 15:07:29 +08:00
5 changed files with 10 additions and 10 deletions

View File

@@ -56,10 +56,10 @@ namespace WMS.Web.Core.Dto
/// <summary>
/// 是否冻结
///</summary>
public bool? IsDelete { get; set; } = false;
public bool IsDelete { get; set; } = false;
/// <summary>
/// 是否激活过(只有做过 盘点 采购和非采购上架 出库回退上架 才算激活)
///</summary>
public bool? IsActivate { get; set; } = false;
public bool IsActivate { get; set; } = false;
}
}