调拨入库 备品备件

This commit is contained in:
2024-08-06 17:39:39 +08:00
parent 46c0b3c574
commit 18f052cefd
6 changed files with 279 additions and 19 deletions

View File

@@ -63,5 +63,14 @@ public partial class EqpSpareParts : BaseEntity<string>
/// 备注
/// </summary>
public string? remark { get; set; }
/// <summary>
/// 安全库存
/// </summary>
public decimal? safety_stock { get; set; }
/// <summary>
/// 保质期(天)
/// </summary>
public int quality_guarantee_period { get; set; }
}

View File

@@ -48,5 +48,10 @@ public partial class EqpSparePartsInstockD : BaseEntity<string>
/// 已领数量
/// </summary>
public int use_quantity { get; set; }
/// <summary>
/// 批号
/// </summary>
public string batch { get; set; }
}