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

22 lines
428 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExternalDataSync.MOM
{
///生产日历下发 Body
public class ProductionCalendarBodyData
{
/// <summary>
// 日历组
/// </summary>
public List<ProductionCalendarData> calendarGroup
{
get;
set;
} = null;
}
}