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