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.

BPA_StoreAuthorization.cs 666 B

9 months ago
12345678910111213141516171819202122232425
  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMeal.Core.Entity
  9. {
  10. [SugarTable("bpa_storeauthorization")]
  11. public class BPA_StoreAuthorization : IBaseEntity, IGroupId
  12. {
  13. public string StoreId { get; set; }
  14. public string Key { get; set; }
  15. public string GroupId { get; set; }
  16. /// <summary>
  17. /// 有效期 长期有效为空
  18. /// </summary>
  19. public DateTime? PeriodValidity { get; set; }
  20. public DateTime UpdateAt { get; set; }
  21. }
  22. }