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

30 lines
903 B

  1. using BPA.SAAS.Manage.Comm.Const;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using Furion;
  4. using SqlSugar;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace BPA.SAAS.Manage.Core.DataBase
  11. {
  12. [SugarTable("bpa_goodsattributevalue")]
  13. public class BPA_GoodsAttributeValue: IBaseEntity, IGroupId
  14. {
  15. /// <summary>
  16. ///商品属性id
  17. /// </summary>
  18. public string GoodsAttributeId { get; set; }
  19. /// <summary>
  20. /// 属性值
  21. /// </summary>
  22. public string AttributeValue { get; set; }
  23. public int Sort { get; set; }
  24. public string WaiKey { get; set; }
  25. [SugarColumn(ColumnDataType = "nvarchar(64)", ColumnDescription = "GroupId", IsNullable = true)]
  26. public string GroupId { get; set; } = App.User?.FindFirst(ClaimConst.GroupId)?.Value;
  27. }
  28. }