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.

MiniStorePage.cs 761 B

11 months ago
123456789101112131415161718192021222324252627282930
  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  2. using SqlSugar;
  3. namespace BPA.KitChen.GroupMeal.Core.Entity
  4. {
  5. /// <summary>
  6. /// 微信小程序前端店铺信息
  7. /// </summary>
  8. [SugarTable("bpa_wechat_ministore_page")]
  9. public class MiniStorePage:IBaseEntity
  10. {
  11. /// <summary>
  12. /// 页面名称
  13. /// </summary>
  14. public string PageName { get; set; }
  15. /// <summary>
  16. /// 页面路由
  17. /// </summary>
  18. public string PageRoute { get; set; }
  19. /// <summary>
  20. /// 加盟商id
  21. /// </summary>
  22. public string FranchiseeId { get; set; }
  23. /// <summary>
  24. /// 加盟商店铺
  25. /// </summary>
  26. public string StoreId { get; set; }
  27. }
  28. }