using SqlSugar; namespace ZJ_BYD.Model { /// /// 掩码表 /// [SugarTable("t_maskcode")] public class T_MaskCode : BaseModel { /// /// 线编码 /// [SugarColumn(ColumnName = "linecode")] public string LineCode { get; set; } /// /// 分类,用于区分线路 /// [SugarColumn(ColumnName = "category")] public string Category { get; set; } /// /// 工位编码 /// [SugarColumn(ColumnName = "stationcode")] public string StationCode { get; set; } /// /// 机壳SFC掩码 /// [SugarColumn(ColumnName = "productsfccode")] public string ProductSfcCode { get; set; } /// /// SFC_DSP描述 /// [SugarColumn(ColumnName = "sfcdsp")] public string SfcDsp { get; set; } /// /// ITEM物料编码 /// [SugarColumn(ColumnName = "itemcode")] public string ItemCode { get; set; } /// /// ITEM_VISION版本 /// [SugarColumn(ColumnName = "itemversion")] public string ItemVersion { get; set; } /// /// ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "itemtype")] public string ItemType { get; set; } /// /// 组件1SFC掩码 /// [SugarColumn(ColumnName = "sub1sfccode")] public string Sub1SfcCode { get; set; } /// /// 组件1SFC_DSP描述 /// [SugarColumn(ColumnName = "sub1sfcdsp")] public string Sub1SfcDsp { get; set; } /// /// 组件1ITEM物料编码 /// [SugarColumn(ColumnName = "sub1sfcitemcode")] public string Sub1SfcItemCode { get; set; } /// /// 组件1ITEM_VISION版本 /// [SugarColumn(ColumnName = "sub1itemversion")] public string Sub1ItemVersion { get; set; } /// /// 组件1ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "sub1itemtype")] public string Sub1ItemType { get; set; } /// /// 组件2SFC掩码 /// [SugarColumn(ColumnName = "sub2sfccode")] public string Sub2SfcCode { get; set; } /// /// 组件2SFC_DSP描述 /// [SugarColumn(ColumnName = "sub2sfcdsp")] public string Sub2SfcDsp { get; set; } /// /// 组件2ITEM物料编码 /// [SugarColumn(ColumnName = "sub2sfcitemcode")] public string Sub2SfcItemCode { get; set; } /// /// 组件2ITEM_VISION版本 /// [SugarColumn(ColumnName = "sub2itemversion")] public string Sub2ItemVersion { get; set; } /// /// 组件2ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "sub2itemtype")] public string Sub2ItemType { get; set; } /// /// 组件3SFC掩码 /// [SugarColumn(ColumnName = "sub3sfccode")] public string Sub3SfcCode { get; set; } /// /// 组件3SFC_DSP描述 /// [SugarColumn(ColumnName = "sub3sfcdsp")] public string Sub3SfcDsp { get; set; } /// /// 组件3ITEM物料编码 /// [SugarColumn(ColumnName = "sub3sfcitemcode")] public string Sub3SfcItemCode { get; set; } /// /// 组件3ITEM_VISION版本 /// [SugarColumn(ColumnName = "sub3itemversion")] public string Sub3ItemVersion { get; set; } /// /// 组件3ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "sub3itemtype")] public string Sub3ItemType { get; set; } /// /// 组件4SFC掩码 /// [SugarColumn(ColumnName = "sub4sfccode")] public string Sub4SfcCode { get; set; } /// /// 组件4SFC_DSP描述 /// [SugarColumn(ColumnName = "sub4sfcdsp")] public string Sub4SfcDsp { get; set; } /// /// 组件4ITEM物料编码 /// [SugarColumn(ColumnName = "sub4sfcitemcode")] public string Sub4SfcItemCode { get; set; } /// /// 组件4ITEM_VISION版本 /// [SugarColumn(ColumnName = "sub4itemversion")] public string Sub4ItemVersion { get; set; } /// /// 组件4ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "sub4itemtype")] public string Sub4ItemType { get; set; } /// /// 组件5SFC掩码 /// [SugarColumn(ColumnName = "sub5sfccode")] public string Sub5SfcCode { get; set; } /// /// 组件5SFC_DSP描述 /// [SugarColumn(ColumnName = "sub5sfcdsp")] public string Sub5SfcDsp { get; set; } /// /// 组件5ITEM物料编码 /// [SugarColumn(ColumnName = "sub5sfcitemcode")] public string Sub5SfcItemCode { get; set; } /// /// 组件5ITEM_VISION版本 /// [SugarColumn(ColumnName = "sub5itemversion")] public string Sub5ItemVersion { get; set; } /// /// 组件5ITEM_TYPE内外部批次 /// [SugarColumn(ColumnName = "sub5itemtype")] public string Sub5ItemType { get; set; } /// /// 垫圈重量标准G /// [SugarColumn(ColumnName = "weightstandar")] public string WeightStandar { get; set; } /// /// 车型 /// [SugarColumn(ColumnName = "carmode")] public string CarMode { get; set; } /// /// 站点 /// [SugarColumn(ColumnName = "site")] public string Site { get; set; } /// /// 资源 /// [SugarColumn(ColumnName = "resource")] public string Resource { get; set; } /// /// 工序 /// [SugarColumn(ColumnName = "procedure")] public string Procedure { get; set; } /// /// 不合格代码 /// [SugarColumn(ColumnName = "ngcode")] public string NgCode { get; set; } /// /// 是否使用中 /// [SugarColumn(ColumnName = "isused")] public bool IsUsed { get; set; } = false; /// /// 排序索引 /// [SugarColumn(ColumnName = "sortindex")] public int SortIndex { get; set; } /// /// 打印条码组成项(例如:2A2) /// [SugarColumn(ColumnName = "barcodechar")] public string BarCodeChar { get; set; } /// ///232软件编码 /// [SugarColumn(ColumnName = "softcode")] public string SoftCode { get; set; } /// ///232引导版本号 /// [SugarColumn(ColumnName = "guideversion")] public string GuideVersion { get; set; } /// /// 软件版本号校验长度 /// [SugarColumn(ColumnName = "softversionlen")] public int SoftVersionLen { get; set; } /// ///232电压上限 /// [SugarColumn(ColumnName = "voltagemax")] public string VoltageMax { get; set; } /// ///232电压下限 /// [SugarColumn(ColumnName = "voltagemin")] public string VoltageMin { get; set; } /// /// 上工位站点 /// [SugarColumn(ColumnName = "laststationsite")] public string LastStationSite { get; set; } /// /// 上工位资源 /// [SugarColumn(ColumnName = "laststationresource")] public string LastStationResource { get; set; } /// /// 上工位工序 /// [SugarColumn(ColumnName = "laststationprocedure")] public string LastStationProcedure { get; set; } /// /// 打印条码组成字符(例如:D) /// [SugarColumn(ColumnName = "printbarcode")] public string PrintBarcode { get; set; } /// /// 程序块编码,用于判断232通讯时调用哪个方法 /// 1:第一个方法 2:多一步的方法 3:LIN通讯方法 /// [SugarColumn(ColumnName = "programblocknum")] public int ProgramBlockNum { get; set; } /// /// 是否启用支线查询 /// [SugarColumn(ColumnName = "isusestator")] public bool IsUseStator { get; set; } /// /// 是否需要写入序列号 /// [SugarColumn(ColumnName = "isserialnum")] public bool IsSerialNum { get; set; } /// /// 零部件号 /// [SugarColumn(ColumnName = "partCode")] public string PartCode { get; set; } } }