IndustryAssociations.cs 607 B

123456789101112131415161718192021222324252627
  1. using SqlSugar;
  2. using System.ComponentModel;
  3. using XF.Domain.Entities;
  4. namespace Hotline.IndustryClassification
  5. {
  6. /// <summary>
  7. /// 行业关联
  8. /// </summary>
  9. [Description("行业关联")]
  10. public class IndustryAssociations : ITable, IEntity
  11. {
  12. /// <summary>
  13. /// 行业ID
  14. /// </summary>
  15. [SugarColumn(IsPrimaryKey = true)]
  16. public string IndustrialManagementId { get; set; }
  17. /// <summary>
  18. /// 部门Id
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey = true)]
  21. public string OrganizeId { get; set; }
  22. }
  23. }