15 lines
566 B
C#
15 lines
566 B
C#
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;//删除标记
|
|
}
|
|
}
|