using SqlSugar; namespace WcsMain.DataBase.TableEntity; /// /// tbl_app_router_method /// /// /// /// 箱式线每个请求点位的处理逻辑 /// [SugarTable("tbl_app_router_method")] public class AppRouterMethod { /// /// 请求点 /// [SugarColumn(ColumnName = "area")] public string? Area { get; set; } /// /// 调用的类 /// [SugarColumn(ColumnName = "class_name")] public string? ClassName { get; set; } /// /// 路由状态 /// [SugarColumn(ColumnName = "router_status")] public int? RouterStatus { get; set; } /// /// 读码失败时的路向 /// [SugarColumn(ColumnName = "read_fail_router")] public int? ReadFailRouter { get; set; } /// /// 异常时的路向 /// [SugarColumn(ColumnName = "err_router")] public int? ErrRouter { get; set; } /// /// 允许的方向 /// [SugarColumn(ColumnName = "allow_direction")] public string? AllowDirection { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string? Remark { get; set; } }