chore: initial commit
This commit is contained in:
32
Interface_WebAPI/SlMesDbIterface/MOM/ShiftSchedule.cs
Normal file
32
Interface_WebAPI/SlMesDbIterface/MOM/ShiftSchedule.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user