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.
|
- using BPA.KitChen.GroupMeal.Core.Entity.Base;
- using SqlSugar;
-
- namespace BPA.KitChen.GroupMeal.Core.Entity
- {
- /// <summary>
- /// 微信小程序前端店铺信息
- /// </summary>
- [SugarTable("bpa_wechat_ministore_page")]
- public class MiniStorePage:IBaseEntity
- {
- /// <summary>
- /// 页面名称
- /// </summary>
- public string PageName { get; set; }
- /// <summary>
- /// 页面路由
- /// </summary>
- public string PageRoute { get; set; }
- /// <summary>
- /// 加盟商id
- /// </summary>
- public string FranchiseeId { get; set; }
- /// <summary>
- /// 加盟商店铺
- /// </summary>
- public string StoreId { get; set; }
-
- }
- }
|