基础服务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.
 
 

36 lines
987 B

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