This commit is contained in:
rnchg
2026-07-14 21:29:27 +08:00
commit f7ad7e20aa
1773 changed files with 514155 additions and 0 deletions
@@ -0,0 +1,14 @@
namespace FASS.Scheduler.Lite.Controllers.Models.Request
{
public class MaterialInfo
{
public required string Code { get; set; }//物料编码
public string? Name { get; set; }//物料名称
public string? EnName { get; set; }//物料英文名
public string? Type { get; set; }//物料类型
public string? FactoryCode { get; set; }//工厂
public string? Spec { get; set; }//规格
public string? Unit { get; set; }//单位
public bool IsDelete { get; set; } = false;//删除标记
}
}