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,32 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace MisDataSaveDate.MOM
{
public class ShiftSchedule
{
[JsonProperty("empID")]
public string EmployeeID { get; set; }
[JsonProperty("empCode")]
public string EmployeeCode { get; set; }
[JsonProperty("empName")]
public string EmployeeName { get; set; }
[JsonProperty("startDate")]
public string StartDate { get; set; }
[JsonProperty("endDate")]
public string EndDate { get; set; }
[JsonProperty("prodOrg")]
public string ProductionOrg { get; set; }
[JsonProperty("prodCenter")]
public string ProductionCenter { get; set; }
[JsonProperty("workProc")]
public string WorkProcess { get; set; }
}
}