using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 返修通知参数 /// public class RepairNoticeParam { /// /// 返修批次号 /// public string RepairBatchNumber { get; set; } /// /// 零件号 /// public string PartNumber { get; set; } /// /// 计划返修时间 /// public string PlanRepairDate { get; set; } } }