This commit is contained in:
2024-11-18 20:13:49 +08:00
parent caee66b131
commit 15bc3b22fb
7 changed files with 295 additions and 91 deletions

View File

@@ -58,6 +58,16 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
public class WmOneTimeInventoryTableDto
{
public int Total { get; set; }
public int StocktakingTotal { get; set; }
public int QuantitySum { get; set; }
public int RealQuantitySum { get; set; }
public List<WmOneTimeInventoryDto> Result { get; set; }
}
// 一次合格(产成品)导出
[SugarTable("wm_one_time_record", "一次合格表")]
public class WmOneTimeInventoryExportDto

View File

@@ -61,6 +61,16 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
public class WmPolishInventoryTableDto
{
public int Total { get; set; }
public int StocktakingTotal { get; set; }
public int QuantitySum { get; set; }
public int RealQuantitySum { get; set; }
public List<WmPolishInventoryDto> Result { get; set; }
}
[SugarTable("wm_polish_inventory", "抛光表")]
public class WmPolishInventoryExportDto
{
@@ -69,11 +79,12 @@ namespace ZR.Model.MES.wms.Dto
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; }
}
}