增加兼容

This commit is contained in:
18942506660
2024-04-11 14:36:17 +08:00
parent 2523517dcc
commit 05aa8ce1f6
2 changed files with 6 additions and 6 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;
}
}