Files
7-Dongan-Interface/SlMesDbIterface/MOM/ProductionCalendarNonProductionData.cs
2026-05-29 13:57:08 +08:00

30 lines
582 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync.MOM
{
///物料主数据下发 非生产时间
public class ProductionCalendarNonProductionData
{
/// <summary>
// 开始时间
/// </summary>
public string timeOn
{
get;
set;
} = "";
/// <summary>
// 结束时间
/// </summary>
public string endTime
{
get;
set;
} = "";
}
}