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

29 lines
798 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_goodsattribute")]
  13. public class BPA_GoodsAttribute: IBaseEntity, IGroupId
  14. {
  15. /// <summary>
  16. /// 属性名称
  17. /// </summary>
  18. public string AttributeName { get; set; }
  19. /// <summary>
  20. /// 商品小类id
  21. /// </summary>
  22. public string GoodsTypeId { get; set; }
  23. public int Sort { get; set; }
  24. [SugarColumn(ColumnDataType = "nvarchar(64)", ColumnDescription = "GroupId", IsNullable = true)]
  25. public string GroupId { get; set; }
  26. }
  27. }