抛光库导入

This commit is contained in:
2024-10-29 17:35:32 +08:00
parent 08b25e0633
commit eb97591d9c
7 changed files with 137 additions and 22 deletions

View File

@@ -36,6 +36,8 @@ namespace ZR.Model.MES.wms.Dto
public int? Quantity { get; set; }
public int RealQuantity { get; set; }
public int? MaxNum { get; set; }
public int? MinNum { get; set; }

View File

@@ -1,3 +1,5 @@
using MiniExcelLibs.Attributes;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
@@ -59,20 +61,19 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
[SugarTable("wm_polish_inventory", "抛光表")]
public class WmPolishInventoryExportDto
{
[SugarColumn(ColumnName = "partnumber")]
public string { get; set; }
public string { get; set; }
public string { get; set; }
public string { get; set; }
[SugarColumn(ColumnName = "quantity")]
public int { get; set; } = 0;
public int { get; set; } = 0;
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? { get; set; }
}
}