using EPLAN.Harness.PlatformCore.P8Objects; namespace Sinvo.EplanHpD.Plugin.WPFUI.Models { /* 线色 线材型号 线材编码 前端子型号 前端子物料编码 前端剥线长度 后端子型号 后端子物料编码 后端剥线长度 截面积 线长+0 十位取整 线号 型号 数量 */ public class StuffedDataModel : CheckedModel { public StuffedDataModel() { } public string OccPartId { get; set; } private string wireColor; private string wireModel; private string wireCode; private string wireName; private string frontTerminalModel; private string frontTerminalMaterialCode; private string frontStripLength; private string rearTerminalModel; private string rearTerminalMaterialCode; private string rearStripLength; private string crossSection; private string wireLength; private string wireNumber; private string model; private int quantity; private string discolorationDesc; private string imprint; private string numberTubeSpec; private string numberTubeMaterialNo; private string numberTubeContent; /// /// B号码管规格 /// public string NumberTubeSpec { get => numberTubeSpec; set => SetProperty(ref numberTubeSpec, value); } /// /// B号码管物料编码 /// public string NumberTubeMaterialNo { get => numberTubeMaterialNo; set => SetProperty(ref numberTubeMaterialNo, value); } /// /// B号码管内容 /// public string NumberTubeContent { get => numberTubeContent; set => SetProperty(ref numberTubeContent, value); } /// /// 导线名称 /// public string WireName { get => wireName; set => SetProperty(ref wireName, value); } /// 电线标码 public string Imprint { get => imprint; set => SetProperty(ref imprint, value); } /// /// 线色 /// public string WireColor { get => wireColor; set => SetProperty(ref wireColor, value); } /// /// 线材型号 /// public string WireModel { get => wireModel; set => SetProperty(ref wireModel, value); } /// /// 线材编码 /// public string WireCode { get => wireCode; set => SetProperty(ref wireCode, value); } /// /// 前端子型号 /// public string FrontTerminalModel { get => frontTerminalModel; set => SetProperty(ref frontTerminalModel, value); } /// /// 前端子物料编码 /// public string FrontTerminalMaterialCode { get => frontTerminalMaterialCode; set => SetProperty(ref frontTerminalMaterialCode, value); } /// /// 前端剥线长度 /// public string FrontStripLength { get => frontStripLength; set => SetProperty(ref frontStripLength, value); } /// /// 后端子型号 /// public string RearTerminalModel { get => rearTerminalModel; set => SetProperty(ref rearTerminalModel, value); } /// /// 后端子物料编码 /// public string RearTerminalMaterialCode { get => rearTerminalMaterialCode; set => SetProperty(ref rearTerminalMaterialCode, value); } /// /// 后端剥线长度 /// public string RearStripLength { get => rearStripLength; set => SetProperty(ref rearStripLength, value); } /// /// 截面积 /// public string CrossSection { get => crossSection; set => SetProperty(ref crossSection, value); } /// /// 线长 /// public string WireLength { get => wireLength; set => SetProperty(ref wireLength, value); } /// /// 线号 /// public string WireNumber { get => wireNumber; set => SetProperty(ref wireNumber, value); } /// /// 型号 /// public string Model { get => model; set => SetProperty(ref model, value); } /// /// 数量 /// public int Quantity { get => quantity; set => SetProperty(ref quantity, value); } /// /// 变色管信息 /// public string DiscolorationDesc { get => discolorationDesc; set => SetProperty(ref discolorationDesc, value); } /// /// 变色绝缘套管信息 /// public InsulationModel Insulation { get; set; } } }