基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
902 B

  1. using BPA.SAAS.Manage.Core.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Core.Product
  9. {
  10. [SugarTable("bpa_producttopics")]
  11. public class BPA_ProductTopics : IBaseEntity
  12. {
  13. /// <summary>
  14. /// Topics类
  15. /// </summary>
  16. public string Topics { get; set; }
  17. /// <summary>
  18. /// TopicsType类型 0发布 1订阅 2发布和订阅
  19. /// </summary>
  20. public int TopicsType { get; set; }
  21. /// <summary>
  22. /// 描述
  23. /// </summary>
  24. public string Description { get; set; }
  25. public string ProductId { get; set; }
  26. public string ProductVesionId { get; set; }
  27. /// <summary>
  28. /// 是否默认Topics
  29. /// </summary>
  30. public bool IsDefault { get; set; }
  31. }
  32. }