22 lines
428 B
C#
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;
|
|
}
|
|
}
|