chore: initial commit

This commit is contained in:
XingCheng3
2026-05-29 09:34:04 +08:00
commit 78ae9dcd2e
683 changed files with 68110 additions and 0 deletions

View 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; }
}
}