This commit is contained in:
2024-11-15 18:51:05 +08:00
parent 8155905cb4
commit caee66b131
11 changed files with 184 additions and 79 deletions

View File

@@ -58,19 +58,19 @@ namespace ZR.Model.MES.wms.Dto
public DateTime? UpdatedTime { get; set; }
}
// 一次合格导出
// 一次合格(产成品)导出
[SugarTable("wm_one_time_record", "一次合格表")]
public class WmOneTimeInventoryExportDto
{
[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; }
}
}