30 lines
582 B
C#
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;
|
|
} = "";
|
|
}
|
|
}
|