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.
|
- using BPA.SAAS.Manage.Core.Base;
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Core.Product
- {
- [SugarTable("bpa_producttopics")]
- public class BPA_ProductTopics : IBaseEntity
- {
- /// <summary>
- /// Topics类
- /// </summary>
- public string Topics { get; set; }
- /// <summary>
- /// TopicsType类型 0发布 1订阅 2发布和订阅
- /// </summary>
- public int TopicsType { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- public string Description { get; set; }
- public string ProductId { get; set; }
- //public string GroupId { get; set; }
- }
- }
|