Config.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace Common.Wechat{
  6. public class Config {
  7. //public const int CookieExpiresDays = 1; //Cookie过期天数
  8. //public const string WeChatAppName = "gh_ab8f63a476a7";
  9. //public const string WeChatAppKey = "wxeb5285aca84c4306";
  10. //public const string WeChatAppSecret = "aee45b38555ed6f4f6ad3dd84bc53295";
  11. public const string WeChatAppName = "gh_33e1b6eec358";
  12. public const string WeChatAppKey = "wxbb5067ab5bad9403";
  13. public const string WeChatAppSecret = "cde93471b773ce25b1688e391872b13f";
  14. public const string Host = "coop.360lj.com";//119.27.191.247 http://coop.360lj.com/web/supplymobile/listdata?RecordId=9E5D1546-72F5-42DD-8621-13CCD520ED1F
  15. //public const string Host = "localhost:8001/login";
  16. public const int PageSize = 8; //分页大小
  17. public const int MaxPageSize = 100; //分页大小
  18. //public const string TablePrefix = "sup_";
  19. public const string TablePrefix = "mem_";
  20. public const int HoursToCancel = 6;
  21. //private static list<arearegion> _arealist = null;//省市区列表
  22. //public static list<arearegion> arearegioinlist {
  23. // get {
  24. // if (_arealist == null) {
  25. // _arealist = new arearegionbll().getlistbysql("select * from arearegion");
  26. // }
  27. // return _arealist;
  28. // }
  29. //}
  30. }
  31. }