MmMaterialExcelDto2

This commit is contained in:
2026-01-07 16:31:08 +08:00
parent abef844575
commit 9a485ec0bb

View File

@@ -126,4 +126,55 @@ namespace DOAN.Model.BZFM.Dto
[ExcelColumn(Name = "描述")]
public string Description { get; set; }
}
// <summary>
/// 物料清单导入导出
/// </summary>
public class MmMaterialExcelDto2
{
[ExcelColumn(Name = "id")]
public int Id { get; set; }
[ExcelColumn(Name = "物料标号")]
public string { get; set; }
[ExcelColumn(Name = "物料编码")]
public string { get; set; }
[ExcelColumn(Name = "物料名称")]
public string { get; set; }
[ExcelColumn(Name = "规格")]
public string { get; set; }
[ExcelColumn(Name = "物料分类编码")]
public string { get; set; }
[ExcelColumn(Name = "物料分类名称")]
public string { get; set; }
[ExcelColumn(Name = "计量单位")]
public string { get; set; }
[ExcelColumn(Name = "供应商编码")]
public string { get; set; }
[ExcelColumn(Name = "供应商名称")]
public string { get; set; }
[ExcelColumn(Name = "安全库存")]
public decimal { get; set; }
[ExcelColumn(Name = "状态")]
public string { get; set; }
[ExcelColumn(Name = "创建时间")]
public DateTime? { get; set; }
[ExcelColumn(Name = "更新时间")]
public DateTime? { get; set; }
[ExcelColumn(Name = "描述")]
public string { get; set; }
}
}