EmployeeCardRelationEntity.cs 605 B

12345678910111213141516171819202122232425262728
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace AI.Platform.Core.Entity.System.VehicleTerminal.CardInfo
  6. {
  7. /// <summary>
  8. /// 司机与卡关系表
  9. /// </summary>
  10. [SugarTable(null, "司机与卡关系表")]
  11. public class EmployeeCardRelationEntity : EntityBaseLite
  12. {
  13. /// <summary>
  14. /// 司机ID
  15. /// </summary>
  16. [SugarColumn(IsNullable = true)]
  17. public long? DriverId { get; set; }
  18. /// <summary>
  19. /// 卡ID
  20. /// </summary>
  21. public long? CardId { get; set; }
  22. }
  23. }