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.
 
 

20 lines
507 B

  1. using BPA.KitChen.GroupMeal.Core.Common.Const;
  2. using Furion;
  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.KitChen.GroupMeal.Core.Entity.Base
  10. {
  11. public class IBaseGroupIdEntity: IEntity
  12. {
  13. [SugarColumn(ColumnDataType = "nvarchar(64)", ColumnDescription = "GroupId", IsNullable = true)]
  14. public string GroupId { get; set; } = App.User?.FindFirst(ClaimConst.GroupId)?.Value;
  15. }
  16. }