using SqlSugar; namespace ZJ_BYD.Model { /// /// 工位 /// [SugarTable("t_station")] public class T_Station : BaseModel { /// /// 工控机标识 /// [SugarColumn(ColumnName = "ipcid")] public string IpcId { get; set; } /// /// 产线编码 /// [SugarColumn(ColumnName = "linecode")] public string LineCode { get; set; } /// /// 分类,用于区分线路 /// [SugarColumn(ColumnName = "category")] public string Category { get; set; } /// /// 工位编码 /// [SugarColumn(ColumnName = "stationcode")] public string StationCode { get; set; } /// /// 工位名称 /// [SugarColumn(ColumnName = "stationname")] public string StationName { get; set; } /// /// 是否显示工单绑定按钮 /// [SugarColumn(ColumnName = "isshoworderbtn")] public bool IsShowOrderBtn { get; set; } /// /// 是否显示手动打印按钮 /// [SugarColumn(ColumnName = "isshowprintbtn")] public bool IsShowPrintBtn { get; set; } /// /// 是否查询离散装配绑定结果 /// [SugarColumn(ColumnName = "issearchassemble")] public bool IsSearchAssemble { get; set; } /// /// 是否启用离散装配条码绑定 /// [SugarColumn(ColumnName = "isbindassemblecode")] public bool IsBindAssembleCode { get; set; } /// /// 是否支线工位 /// [SugarColumn(ColumnName = "isbranch")] public bool IsBranch { get; set; } /// /// 是否查询上工位数据 /// [SugarColumn(ColumnName = "issearchlaststation")] public bool IsSearchLastStation { get; set; } /// /// 上工位数据库IP地址 /// [SugarColumn(ColumnName = "databaseip")] public string DatabaseIp { get; set; } /// /// 排序索引 /// [SugarColumn(ColumnName = "sortindex")] public int SortIndex { get; set; } /// /// 是否被删除 /// [SugarColumn(ColumnName = "isdeleted")] public bool IsDeleted { get; set; } /// /// 是否允许主条码重复生产(NG的产品可以重复做) /// [SugarColumn(ColumnName = "issfccoderepeat")] public bool IsSfcCodeRepeat { get; set; } } }