12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Common.Wechat{
- public class Config {
- //public const int CookieExpiresDays = 1; //Cookie过期天数
- //public const string WeChatAppName = "gh_ab8f63a476a7";
- //public const string WeChatAppKey = "wxeb5285aca84c4306";
- //public const string WeChatAppSecret = "aee45b38555ed6f4f6ad3dd84bc53295";
- public const string WeChatAppName = "gh_33e1b6eec358";
- public const string WeChatAppKey = "wxbb5067ab5bad9403";
- public const string WeChatAppSecret = "cde93471b773ce25b1688e391872b13f";
- public const string Host = "coop.360lj.com";//119.27.191.247 http://coop.360lj.com/web/supplymobile/listdata?RecordId=9E5D1546-72F5-42DD-8621-13CCD520ED1F
- //public const string Host = "localhost:8001/login";
- public const int PageSize = 8; //分页大小
- public const int MaxPageSize = 100; //分页大小
- //public const string TablePrefix = "sup_";
- public const string TablePrefix = "mem_";
- public const int HoursToCancel = 6;
- //private static list<arearegion> _arealist = null;//省市区列表
- //public static list<arearegion> arearegioinlist {
- // get {
- // if (_arealist == null) {
- // _arealist = new arearegionbll().getlistbysql("select * from arearegion");
- // }
- // return _arealist;
- // }
- //}
- }
- }
|