using SqlSugar; namespace ZJ_BYD.ViewModel { public class QueryStationVM { public int Id { get; set; } public string IpcId { get; set; } public string LineCode { get; set; } /// /// 分类,用于区分线路 /// public string Category { get; set; } public string StationCode { get; set; } public string StationName { get; set; } /// /// 是否显示工单绑定按钮 /// public string StrIsShowOrderBtn { get; set; } /// /// 是否显示手动打印按钮 /// public string StrIsShowPrintBtn { get; set; } /// /// 是否查询离散装配绑定结果 /// public string StrIsSearchAssemble { get; set; } /// /// 是否支线工位 /// public bool IsBranch { get; set; } /// /// 是否支线工位 /// public string StrIsBranch { get; set; } /// /// 是否允许主条码重复生产(NG的产品可以重复做) /// public bool IsSfcCodeRepeat { get; set; } /// /// 是否允许重复生产(NG的产品可以重复做) /// public string StrIsSfcCodeRepeat { get; set; } /// /// 是否启用离散装配条码绑定 /// public string StrIsBindAssembleCode { get; set; } /// /// 是否查询上工位数据 /// public string StrIsSearchLastStation { get; set; } /// /// 上工位数据库IP地址 /// public string DatabaseIp { get; set; } public int SortIndex { get; set; } } }