wcs_server_kate_suzhou/WcsMain/DataBase/TableEntity/AppRouterMethod.cs

60 lines
1.3 KiB
C#
Raw Permalink Normal View History

2024-05-14 16:30:56 +08:00
using SqlSugar;
namespace WcsMain.DataBase.TableEntity;
/// <summary>
/// tbl_app_router_method
/// </summary>
2024-06-12 07:29:44 +08:00
/// <remarks>
///
/// 箱式线每个请求点位的处理逻辑
/// </remarks>
2024-05-14 16:30:56 +08:00
[SugarTable("tbl_app_router_method")]
public class AppRouterMethod
{
/// <summary>
/// 请求点
/// </summary>
[SugarColumn(ColumnName = "area")]
public string? Area { get; set; }
/// <summary>
/// 调用的类
/// </summary>
[SugarColumn(ColumnName = "class_name")]
public string? ClassName { get; set; }
2024-06-12 07:29:44 +08:00
/// <summary>
/// 路由状态
/// </summary>
[SugarColumn(ColumnName = "router_status")]
public int? RouterStatus { get; set; }
/// <summary>
/// 读码失败时的路向
/// </summary>
[SugarColumn(ColumnName = "read_fail_router")]
public int? ReadFailRouter { get; set; }
/// <summary>
/// 异常时的路向
/// </summary>
[SugarColumn(ColumnName = "err_router")]
public int? ErrRouter { get; set; }
/// <summary>
/// 允许的方向
/// </summary>
[SugarColumn(ColumnName = "allow_direction")]
public string? AllowDirection { get; set; }
2024-05-14 16:30:56 +08:00
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnName = "remark")]
public string? Remark { get; set; }
}