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.
|
- using BPA.KitChen.GroupMeal.Core.Entity.Base;
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.KitChen.GroupMeal.Core.Entity
- {
- [SugarTable("bpa_storeauthorization")]
- public class BPA_StoreAuthorization : IBaseEntity, IGroupId
- {
- public string StoreId { get; set; }
- public string Key { get; set; }
- public string GroupId { get; set; }
-
- /// <summary>
- /// 有效期 长期有效为空
- /// </summary>
- public DateTime? PeriodValidity { get; set; }
-
- public DateTime UpdateAt { get; set; }
- }
- }
|