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.DataBase { [SugarTable("bpa_goodsclassifyrelation")] public class BPA_GoodsClassifyRelation : IBaseEntity, IGroupId { public string GoodsId { get; set; } public string ClassifyId { get; set; } public string GroupId { get; set; } } }