InviteCodeRecord.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using SnapshotWinFormsApp.Entities.OldHotline;
  2. using SqlSugar;
  3. using System.ComponentModel;
  4. namespace SnapshotWinFormsApp.Entities.NewHotline;
  5. /// <summary>
  6. /// 邀请记录
  7. /// </summary>
  8. [SugarTable("invite_code_record")]
  9. [Description("邀请记录")]
  10. public class InviteCodeRecord : CreationSoftDeleteEntity
  11. {
  12. /// <summary>
  13. /// 部门Id
  14. /// </summary>
  15. [SugarColumn(ColumnDescription = "部门Id")]
  16. public string OrgId { get; set; }
  17. /// <summary>
  18. /// 部门名称
  19. /// </summary>
  20. [SugarColumn(ColumnDescription = "部门名称")]
  21. public string OrgName { get; set; }
  22. /// <summary>
  23. /// 邀请码
  24. /// </summary>
  25. [SugarColumn(ColumnDescription = "邀请码")]
  26. public string InviteCode { get; set; }
  27. /// <summary>
  28. /// 微信OpenId
  29. /// </summary>
  30. [SugarColumn(ColumnDescription = "微信OpenId")]
  31. public string WXOpenId { get; set; }
  32. /// <summary>
  33. /// 电话
  34. /// </summary>
  35. [SugarColumn(ColumnDescription = "电话")]
  36. public string PhoneNumber { get; set; }
  37. /// <summary>
  38. /// 姓名
  39. /// </summary>
  40. [SugarColumn(ColumnDescription = "姓名")]
  41. public string? Name { get; set; }
  42. }