chore: initial commit
This commit is contained in:
29
Interface_WebAPI/SlMesDbIterface/MOM/UnitData.cs
Normal file
29
Interface_WebAPI/SlMesDbIterface/MOM/UnitData.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
public class UnitData
|
||||
{
|
||||
[JsonProperty("data")]
|
||||
public List<Unit> Data { get; set; }
|
||||
}
|
||||
|
||||
public class Unit
|
||||
{
|
||||
[JsonProperty("unitID")]
|
||||
public string UnitID { get; set; }
|
||||
|
||||
[JsonProperty("unitCode")]
|
||||
public string UnitCode { get; set; }
|
||||
|
||||
[JsonProperty("unitName")]
|
||||
public string UnitName { get; set; }
|
||||
|
||||
[JsonProperty("createTime")]
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
[JsonProperty("lastModifyTime")]
|
||||
public string LastModifyTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user