25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

26 satır
666 B

  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. }