Files
2026-05-29 09:34:04 +08:00

32 lines
819 B
C#

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