30 lines
624 B
C#
30 lines
624 B
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|