chore: initial commit
This commit is contained in:
44
Interface_WebAPI/SlMesDbIterface/MOM/MaterialData.cs
Normal file
44
Interface_WebAPI/SlMesDbIterface/MOM/MaterialData.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
public class MaterialInfoSave
|
||||
{
|
||||
[JsonProperty("data")]
|
||||
public List<Material> Data { get; set; }
|
||||
}
|
||||
|
||||
public class Material
|
||||
{
|
||||
[JsonProperty("materialID")]
|
||||
public string MaterialID { get; set; }
|
||||
|
||||
[JsonProperty("materialCode")]
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
[JsonProperty("materialName")]
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
[JsonProperty("unitOfMeasure")]
|
||||
public string UnitOfMeasure { get; set; }
|
||||
|
||||
[JsonProperty("materialCategory")]
|
||||
public string MaterialCategory { get; set; }
|
||||
|
||||
[JsonProperty("materialSpec")]
|
||||
public string MaterialSpec { get; set; }
|
||||
|
||||
[JsonProperty("materialModel")]
|
||||
public string MaterialModel { get; set; }
|
||||
|
||||
[JsonProperty("materialDescription")]
|
||||
public string MaterialDescription { get; set; }
|
||||
|
||||
[JsonProperty("createTime")]
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
[JsonProperty("lastModifyTime")]
|
||||
public string LastModifyTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user