CompanyEntity.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using AI.Platform.Core.Entity;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace AI.Platform.Core.Entity.System.VehicleTerminal.Company
  7. {
  8. /// <summary>
  9. /// 公司信息表
  10. /// </summary>
  11. [SugarTable(null, "公司信息表")]
  12. public class CompanyEntity : EntityBaseLite
  13. {
  14. /// <summary>
  15. /// 公司ID
  16. /// </summary>
  17. public long Id { get; set; }
  18. /// <summary>
  19. /// 客户名称
  20. /// </summary>
  21. [SugarColumn(IsNullable = true)]
  22. public string? CustomerName { get; set; }
  23. /// <summary>
  24. /// 客户编号
  25. /// </summary>
  26. [SugarColumn(IsNullable = true)]
  27. public string? CustomerCode { get; set; }
  28. /// <summary>
  29. /// 所属站点ID
  30. /// </summary>
  31. [SugarColumn(IsNullable = true)]
  32. public long? SiteId { get; set; }
  33. /// <summary>
  34. /// 发票抬头
  35. /// </summary>
  36. [SugarColumn(IsNullable = true)]
  37. public string? InvoiceTitle { get; set; }
  38. /// <summary>
  39. /// 税号(统一社会信用代码)
  40. /// </summary>
  41. [SugarColumn(IsNullable = true)]
  42. public string? TaxNumber { get; set; }
  43. /// <summary>
  44. /// 公司注册地址
  45. /// </summary>
  46. [SugarColumn(IsNullable = true)]
  47. public string? RegisterAddress { get; set; }
  48. /// <summary>
  49. /// 公司注册电话
  50. /// </summary>
  51. [SugarColumn(IsNullable = true)]
  52. public string? RegisterPhone { get; set; }
  53. /// <summary>
  54. /// 状态:1-正常,2-禁用,3-注销
  55. /// </summary>
  56. [SugarColumn(IsNullable = true)]
  57. public byte? Status { get; set; }
  58. /// <summary>
  59. /// 注册时间
  60. /// </summary>
  61. [SugarColumn(IsNullable = true)]
  62. public DateTime? RegistrationTime { get; set; }
  63. /// <summary>
  64. /// 公司联系地址
  65. /// </summary>
  66. [SugarColumn(IsNullable = true)]
  67. public string? CompanyAddress { get; set; }
  68. /// <summary>
  69. /// 公司邮箱
  70. /// </summary>
  71. [SugarColumn(IsNullable = true)]
  72. public string? CompanyEmail { get; set; }
  73. /// <summary>
  74. /// 账户id
  75. /// </summary>
  76. [SugarColumn(IsNullable = true)]
  77. public long? AccountId { get; set; }
  78. }
  79. }