using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace AI.Platform.Core.Entity.System.VehicleTerminal.CardInfo { /// /// 司机与卡关系表 /// [SugarTable(null, "司机与卡关系表")] public class EmployeeCardRelationEntity : EntityBaseLite { /// /// 司机ID /// [SugarColumn(IsNullable = true)] public long? DriverId { get; set; } /// /// 卡ID /// public long? CardId { get; set; } } }