using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareTestForm { public class SelLoadStatus { /// /// 选择的产线 /// public string line { get; set; } /// /// 选择的loadStatus /// public int loadStatus { get; set; } /// /// 是否生成LoadNumber /// public bool IsCreateNewLoadNumber { get; set; } /// /// 是否生成LineEntryTime /// public bool IsCreateNewLineEntryTime { get; set; } } }