chore: initial commit
This commit is contained in:
42
Interface_WebAPI/SlMesDbIterface/MOM/WorkCenterData.cs
Normal file
42
Interface_WebAPI/SlMesDbIterface/MOM/WorkCenterData.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
|
||||
public class WorkCenterData
|
||||
{
|
||||
[JsonProperty("data")]
|
||||
public List<WorkCenter> Data { get; set; }
|
||||
}
|
||||
|
||||
public class WorkCenter
|
||||
{
|
||||
[JsonProperty("workCenterID")]
|
||||
public string WorkCenterID { get; set; }
|
||||
|
||||
[JsonProperty("workCenterCode")]
|
||||
public string WorkCenterCode { get; set; }
|
||||
|
||||
[JsonProperty("workCenterName")]
|
||||
public string WorkCenterName { get; set; }
|
||||
|
||||
[JsonProperty("orgID")]
|
||||
public string OrgID { get; set; }
|
||||
|
||||
[JsonProperty("classification")]
|
||||
public string Classification { get; set; }
|
||||
|
||||
[JsonProperty("level")]
|
||||
public string LevelNo { get; set; }
|
||||
|
||||
[JsonProperty("detail")]
|
||||
public string Detail { get; set; }
|
||||
|
||||
[JsonProperty("createTime")]
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
[JsonProperty("lastModifyTime")]
|
||||
public string LastModifyTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user