using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ExternalDataSync.MOM { ///物料主数据下发 Body public class ProductionCalendarData { /// // 类型 /// public string typesOf { get; set; } = ""; /// // 类型编码 /// public string typeCode { get; set; } = ""; /// // 日历编码 /// public string calendarEncoding { get; set; } = ""; /// // 班次名称 /// public string shiftName { get; set; } = ""; /// // 开始时间 /// public string timeOn { get; set; } = ""; /// /// 结束时间 /// public string endTime { get; set; } = ""; /// // 开始日期 /// public string startDate { get; set; } = ""; /// // 结束日期 /// public string endDate { get; set; } = ""; /// // 班次描述 /// public string shiftDescription { get; set; } = ""; /// // 固定休息日 /// public string fixedRestDays { get; set; } = ""; /// // 法定节日 /// public List statutoryHolidays { get; set; } = null; /// // 非生产时间 /// public List nonProductionTime { get; set; } = null; } }