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