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