2025-05-22 13:06:49 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.DataBase.TableEntity;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 载具信息和 plcid 绑定
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("tbl_app_vehicle_binding")]
|
|
|
|
|
|
public class AppVehicleBinding
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// plcId
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "plc_id")]
|
|
|
|
|
|
public int? PlcId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 载具号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "vehicle_no")]
|
|
|
|
|
|
public string? VehicleNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 绑定时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "binding_time")]
|
|
|
|
|
|
public DateTime? BindingTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-05-14 16:30:56 +08:00
|
|
|
|
}
|