liaoxujun@qq.com
2024-04-10 934afe01593a0ccb2f4dca340ae8a6aa429d1848
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
/***********************************************************************
 *            Project: baifenBinfa.Net                                     *
 *                Web: https://baifenBinfa.com                             *
 *        ProjectName: 百分兵法管理系统                               *
 *             Author:                                        *
 *              Email:                               *
 *         CreateTime: 2020-03-03 3:24:15
 *        Description: 暂无
 ***********************************************************************/
 
 
namespace CoreCms.Net.Configuration
{
    /// <summary>
    /// 平台设置字段缓存名称定义
    /// </summary>
    public static class SystemSettingConstVars
    {
        /// <summary>
        /// 平台名称
        /// </summary>
        public const string ShopName = "shopName";
 
        /// <summary>
        /// 平台描述
        /// </summary>
        public const string ShopDesc = "shopDesc";
 
        /// <summary>
        /// 平台地址
        /// </summary>
        public const string ShopAddress = "shopAddress";
 
        /// <summary>
        /// 备案信息
        /// </summary>
        public const string ShopBeiAn = "shopBeiAn";
 
        /// <summary>
        /// 平台logo
        /// </summary>
        public const string ShopLogo = "shopLogo";
 
        /// <summary>
        /// Favicon图标
        /// </summary>
        public const string ShopFavicon = "shopFavicon";
 
        /// <summary>
        /// 默认图
        /// </summary>
        public const string ShopDefaultImage = "shopDefaultImage";
 
        /// <summary>
        /// 商家手机号
        /// </summary>
        public const string ShopMobile = "shopMobile";
 
        /// <summary>
        /// 商家管理员手机号
        /// </summary>
        public const string ShopManagerMobile = "shopManagerMobile";
 
        /// <summary>
        /// 开启门店自提
        /// </summary>
        public const string StoreSwitch = "storeSwitch";
 
        /// <summary>
        /// 分类样式
        /// </summary>
        public const string CateStyle = "cateStyle";
 
        /// <summary>
        /// H5分类样式
        /// </summary>
        public const string CateType = "cateType";
 
        /// <summary>
        /// 订单取消时间
        /// </summary>
        public const string OrderCancelTime = "orderCancelTime";
 
        /// <summary>
        /// 服务订单取消时间
        /// </summary>
        public const string ServiceOrderCancelTime = "serviceOrderCancelTime";
 
        /// <summary>
        /// 订单完成时间
        /// </summary>
        public const string OrderCompleteTime = "orderCompleteTime";
 
        /// <summary>
        /// 订单确认收货时间
        /// </summary>
        public const string OrderAutoSignTime = "orderAutoSignTime";
 
        /// <summary>
        /// 订单自动评价时间
        /// </summary>
        public const string OrderAutoEvalTime = "orderAutoEvalTime";
 
        /// <summary>
        /// 订单提醒付款时间
        /// </summary>
        public const string RemindOrderTime = "remindOrderTime";
 
        /// <summary>
        /// 门店订单自动发货
        /// </summary>
        public const string StoreOrderAutomaticDelivery = "storeOrderAutomaticDelivery";
 
        /// <summary>
        /// 佣金计算通道
        /// </summary>
        public const string CommissionChannel = "commissionChannel";
 
 
        //分销功能(老分销)=============================================================
        /// <summary>
        /// 是否开启分销
        /// </summary>
        public const string OpenDistribution = "openDistribution";
        /// <summary>
        /// 用户须知:成为经销商后,可以获取佣金,用户只可被推荐一次,越早推荐越返利越多哦。
        /// </summary>
        public const string DistributionNotes = "distributionNotes";
        /// <summary>
        /// 分销协议
        /// </summary>
        public const string DistributionAgreement = "distributionAgreement";
        /// <summary>
        /// 是否开启店铺
        /// </summary>
        public const string DistributionStore = "distributionStore";
 
        /// <summary>
        /// 显示邀请人信息
        /// </summary>
        public const string ShowInviterInfo = "showInviterInfo";
 
        /// <summary>
        /// 邀请用户赠送积分
        /// </summary>
        public const string InviterUserIntegral = "inviterUserIntegral";
 
 
        /// <summary>
        /// 分销层级1,2层
        /// </summary>
        public const string DistributionLevel = "distributionLevel";
        /// <summary>
        /// 成为经销商条件:1无条件(需要审核),2申请(需要审核),3无条件,4注册账号自动开通
        /// </summary>
        public const string DistributionType = "distributionType";
        /// <summary>
        /// 消费自动成为经销商:元
        /// </summary>
        public const string DistributionMoney = "distributionMoney";
        /// <summary>
        /// 购买商品成为经销商:1关闭,2任意商品,3指定商品
        /// </summary>
        public const string DistributionGoods = "distributionGoods";
        /// <summary>
        /// 购买商品成为经销商指定商品序列号
        /// </summary>
        public const string DistributionGoodsId = "distributionGoodsId";
        /// <summary>
        /// 佣金类型:1百分比,2固定金额
        /// </summary>
        public const string CommissionType = "commissionType";
        /// <summary>
        /// 一级佣金
        /// </summary>
        public const string CommissionFirst = "commissionFirst";
        /// <summary>
        /// 二级佣金
        /// </summary>
        public const string CommissionSecond = "commissionSecond";
        /// <summary>
        /// 三级佣金
        /// </summary>
        public const string CommissionThird = "commissionThird";
 
 
        /// <summary>
        /// 库存警报数量
        /// </summary>
        public const string GoodsStocksWarn = "goodsStocksWarn";
 
 
 
        /// <summary>
        /// 退货联系人
        /// </summary>
        public const string ReshipName = "reshipName";
 
        /// <summary>
        /// 退货联系方式
        /// </summary>
        public const string ReshipMobile = "reshipMobile";
 
        /// <summary>
        /// 退货区域
        /// </summary>
        public const string ReshipAreaId = "reshipAreaId";
 
        /// <summary>
        /// 退货详细地址
        /// </summary>
        public const string ReshipAddress = "reshipAddress";
 
        /// <summary>
        /// 退货坐标
        /// </summary>
        public const string ReshipCoordinate = "reshipCoordinate";
 
        /// <summary>
        /// 签到奖励类型
        /// </summary>
        public const string SignPointType = "signPointType";
 
        /// <summary>
        /// 随机奖励积分最小值
        /// </summary>
        public const string SignRandomMin = "signRandomMin";
 
        /// <summary>
        /// 随机奖励积分最大值
        /// </summary>
        public const string SignRandomMax = "signRandomMax";
 
        /// <summary>
        /// 首次奖励积分
        /// </summary>
        public const string FirstSignPoint = "firstSignPoint";
 
        /// <summary>
        /// 连续签到追加
        /// </summary>
        public const string ContinuitySignAdditional = "continuitySignAdditional";
 
        /// <summary>
        /// 单日最大奖励
        /// </summary>
        public const string SignMostPoint = "signMostPoint";
 
        /// <summary>
        /// 开启积分功能
        /// </summary>
        public const string PointSwitch = "pointSwitch";
 
        /// <summary>
        /// 积分模式
        /// </summary>
        public const string PointExchangeModel = "pointExchangeModel";
 
        /// <summary>
        /// 积分昵称
        /// </summary>
        public const string PointShowName = "pointShowName";
 
        /// <summary>
        /// 显示积分组合兑换价
        /// </summary>
        public const string PointShowExchangePrice = "pointShowExchangePrice";
 
 
        /// <summary>
        /// 积分赠送模式
        /// </summary>
        public const string PointGetModel = "pointGetModel";
 
        /// <summary>
        /// 显示积分赠送信息
        /// </summary>
        public const string PointShowPoint = "pointShowPoint";
 
        /// <summary>
        /// 订单积分折现比例
        /// </summary>
        public const string PointDiscountedProportion = "pointDiscountedProportion";
 
        /// <summary>
        /// 订单积分使用比例
        /// </summary>
        public const string OrdersPointProportion = "ordersPointProportion";
 
        /// <summary>
        /// 订单积分奖励比例
        /// </summary>
        public const string OrdersRewardProportion = "ordersRewardProportion";
 
        /// <summary>
        /// 指定特殊日期状态
        /// </summary>
        public const string SignAppointDateStatus = "signAppointDateStatus";
 
        /// <summary>
        /// 指定特殊日期
        /// </summary>
        public const string SignAppointDate = "signAppointDate";
 
        /// <summary>
        /// 指定日期奖励类型
        /// </summary>
        public const string SignAppointDataType = "signAppointDataType";
 
        /// <summary>
        /// 指定日期倍率
        /// </summary>
        public const string SignAppointDateRate = "signAppointDateRate";
 
        /// <summary>
        /// 指定日期追加
        /// </summary>
        public const string SignAppointDateAdditional = "signAppointDateAdditional";
 
 
 
 
        //小程序设置============================================================================
        /// <summary>
        /// 小程序部署URL
        /// </summary>
        public const string WxUrl = "wxUrl";
        /// <summary>
        /// 小程序名称
        /// </summary>
        public const string WxNickName = "wxNickName";
 
        /// <summary>
        /// 小程序AppId
        /// </summary>
        public const string WxAppid = "wxAppid";
 
        /// <summary>
        /// 小程序AppSecret
        /// </summary>
        public const string WxAppSecret = "wxAppSecret";
 
        /// <summary>
        /// 小程序TOKEN
        /// </summary>
        public const string WxToken = "wxToken";
 
        /// <summary>
        /// 小程序EncodingAESKey
        /// </summary>
        public const string WxEncodeaeskey = "wxEncodeaeskey";
 
 
        /// <summary>
        /// 原始Id
        /// </summary>
        public const string WxUserName = "wxUserName";
 
        /// <summary>
        /// 主体信息
        /// </summary>
        public const string WxPrincipalName = "wxPrincipalName";
 
        /// <summary>
        /// 简介
        /// </summary>
        public const string WxSignature = "wxSignature";
 
 
        //公众号设置============================================================================
 
        /// <summary>
        /// 公众号部署URL
        /// </summary>
        public const string WxOfficialUrl = "wxOfficialUrl";
        /// <summary>
        /// 公众号名称
        /// </summary>
        public const string WxOfficialName = "wxOfficialName";
 
        /// <summary>
        /// 微信号
        /// </summary>
        public const string WxOfficialId = "wxOfficialId";
 
        /// <summary>
        /// AppId
        /// </summary>
        public const string WxOfficialAppid = "wxOfficialAppid";
 
        /// <summary>
        /// AppSecret
        /// </summary>
        public const string WxOfficialAppSecret = "wxOfficialAppSecret";
 
        /// <summary>
        /// 公众号原始ID
        /// </summary>
        public const string WxOfficialSourceId = "wxOfficialSourceId";
 
        /// <summary>
        /// 微信验证TOKEN
        /// </summary>
        public const string WxOfficialToken = "wxOfficialToken";
 
        /// <summary>
        /// EncodingAESKey
        /// </summary>
        public const string WxOfficialEncodeaeskey = "wxOfficialEncodeaeskey";
 
        /// <summary>
        /// 公众号类型
        /// </summary>
        public const string WxOfficialType = "wxOfficialType";
        /// <summary>
        /// 公众号二维码
        /// </summary>
        public const string WxOfficialQrCode = "wxOfficialQrCode";
 
 
        // 提现设置============================================================================
        /// <summary>
        /// 最低提现金额
        /// </summary>
        public const string TocashMoneyLow = "tocashMoneyLow";
 
        /// <summary>
        /// 提现服务费率
        /// </summary>
        public const string TocashMoneyRate = "tocashMoneyRate";
 
        /// <summary>
        /// 每日提现上限
        /// </summary>
        public const string TocashMoneyLimit = "tocashMoneyLimit";
 
 
        //其他设置============================================================================
 
        /// <summary>
        /// 腾讯地图key
        /// </summary>
        public const string QqMapKey = "qqMapKey";
 
        /// <summary>
        /// 公司编号
        /// </summary>
        public const string Kuaidi100Customer = "kuaidi100Customer";
 
        /// <summary>
        /// 授权key
        /// </summary>
        public const string Kuaidi100Key = "kuaidi100Key";
 
 
        //搜索发现关键字============================================================================
        /// <summary>
        /// 搜索发现关键词
        /// </summary>
        public const string RecommendKeys = "recommendKeys";
 
 
        //统计代码============================================================================
        /// <summary>
        /// 百度统计代码
        /// </summary>
        public const string StatisticsCode = "statisticsCode";
 
 
        //发票开关============================================================================
        /// <summary>
        /// 发票功能
        /// </summary>
        public const string InvoiceSwitch = "invoiceSwitch";
 
 
        //支付宝小程序appid============================================================================
 
        /// <summary>
        /// 支付宝小程序appid
        /// </summary>
        public const string MpAlipayAppid = "mpAlipayAppid";
 
        /// <summary>
        /// 分享图片
        /// </summary>
        public const string ShareImage = "shareImage";
 
        /// <summary>
        /// 分享标题
        /// </summary>
        public const string ShareTitle = "shareTitle";
 
        /// <summary>
        /// 分享描述
        /// </summary>
        public const string ShareDesc = "shareDesc";
 
        /// <summary>
        /// 关于我们文章
        /// </summary>
        public const string AboutArticleId = "aboutArticleId";
 
        /// <summary>
        /// 关于我们文章
        /// </summary>
        public const string AboutArticle = "aboutArticle";
 
        /// <summary>
        /// 客服ID
        /// </summary>
        public const string EntId = "entId";
 
        /// <summary>
        /// 用户协议
        /// </summary>
        public const string UserAgreementId = "userAgreementId";
 
        /// <summary>
        /// 用户协议
        /// </summary>
        public const string UserAgreement = "userAgreement";
 
        /// <summary>
        /// 隐私政策
        /// </summary>
        public const string PrivacyPolicyId = "privacyPolicyId";
 
        /// <summary>
        /// 隐私政策
        /// </summary>
        public const string PrivacyPolicy = "privacyPolicy";
 
        /// <summary>
        /// 显示充值功能
        /// </summary>
        public const string ShowStoreBalanceRechargeSwitch = "showStoreBalanceRechargeSwitch";
 
        /// <summary>
        /// 是否允许提现
        /// </summary>
        public const string IsAllowWithdrawCash = "isAllowWithdrawCash";
 
        /// <summary>
        /// 显示增值服务板块
        /// </summary>
        public const string ShowVas = "showVas";
 
        /// <summary>
        /// 显示门店列表按钮
        /// </summary>
        public const string ShowStoresSwitch = "showStoresSwitch";
 
        /// <summary>
        /// 显示服务商品按钮
        /// </summary>
        public const string ShowServicePackage = "servicePackage";
 
        /// <summary>
        /// 显示优惠券按钮
        /// </summary>
        public const string ShowCoupon = "showCoupon";
 
        /// <summary>
        /// 显示拼团按钮
        /// </summary>
        public const string ShowPinTuan = "showPinTuan";
 
        /// <summary>
        /// 显示秒杀按钮
        /// </summary>
        public const string ShowSeckill = "showSeckill";
 
        /// <summary>
        /// 显示团购按钮
        /// </summary>
        public const string ShowGroupBuying = "showGroupBuying";
 
        /// <summary>
        /// 显示接龙按钮
        /// </summary>
        public const string ShowSolitaire = "showSolitaire";
 
        /// <summary>
        /// 显示签到按钮
        /// </summary>
        public const string ShowCalendar = "showCalendar";
 
        /// <summary>
        /// 显示自定义表单按钮
        /// </summary>
        public const string ShowCustomForm = "showCustomForm";
 
 
        /// <summary>
        /// 显示首页弹窗
        /// </summary>
        public const string ShowIndexPopupWindow = "showIndexPopupWindow";
 
        /// <summary>
        /// 首页弹窗图片地址
        /// </summary>
        public const string IndexPopupWindowImageUrl = "indexPopupWindowImageUrl";
 
        /// <summary>
        /// 首页弹窗图片链接地址
        /// </summary>
        public const string IndexPopupWindowHrefUrl = "indexPopupWindowHrefUrl";
 
 
        //第三方接口============================================================================
        /// <summary>
        /// 易源接口授权key
        /// </summary>
        public const string ShowApiLogisticsVersion = "showApiLogisticsVersion";
        /// <summary>
        /// 易源接口授权key
        /// </summary>
        public const string ShowApiAppid = "showApiAppid";
        /// <summary>
        /// 易源接口授权密钥
        /// </summary>
        public const string ShowApiSecret = "showApiSecret";
 
 
        //短信平台============================================================================
        /// <summary>
        /// 是否开启短信
        /// </summary>
        public const string SmsEnabled = "smsEnabled";
        /// <summary>
        /// 用户ID
        /// </summary>
        public const string SmsUserId = "smsUserId";
        /// <summary>
        /// 用户账号
        /// </summary>
        public const string SmsAccount = "smsAccount";
        /// <summary>
        /// 用户密码
        /// </summary>
        public const string SmsPassword = "smsPassword";
        /// <summary>
        /// 短信api地址
        /// </summary>
        public const string SmsApiUrl = "smsApiUrl";
        /// <summary>
        /// 短信签名
        /// </summary>
        public const string SmsSignature = "smsSignature";
 
        /// <summary>
        /// 短信单ip每日发送量
        /// </summary>
        public const string SmsIpSendNumber = "smsIpSendNumber";
 
        /// <summary>
        /// 短信发送IP白名单
        /// </summary>
        public const string SmsIpSendWhiteList= "smsIpSendWhiteList";
 
        /// <summary>
        /// 短信发送IP黑名单
        /// </summary>
        public const string SmsIpSendBlackList = "smsIpSendBlackList";
 
        /// <summary>
        /// 账户注册-短信内容模板
        /// </summary>
        public const string SmsTplForReg = "smsTplForReg";
 
        /// <summary>
        /// 账户登录-短信内容模板
        /// </summary>
        public const string SmsTplForLogin = "smsTplForLogin";
 
        /// <summary>
        /// 验证验证码-短信内容模板
        /// </summary>
        public const string SmsTplForVeri = "smsTplForVeri";
 
        /// <summary>
        /// 下单成功时-短信内容模板
        /// </summary>
        public const string SmsTplForCreateOrder = "smsTplForCreateOrder";
 
        /// <summary>
        /// 订单支付成功时-短信内容模板
        /// </summary>
        public const string SmsTplForOrderPayed = "smsTplForOrderPayed";
 
        /// <summary>
        /// 订单催付提醒-短信内容模板
        /// </summary>
        public const string SmsTplForRemindOrderPay = "smsTplForRemindOrderPay";
 
        /// <summary>
        /// 订单发货通知-短信内容模板
        /// </summary>
        public const string SmsTplForDeliveryNotice = "smsTplForDeliveryNotice";
 
        /// <summary>
        /// 售后确认通过-短信内容模板
        /// </summary>
        public const string SmsTplForAfterSalesPass = "smsTplForAfterSalesPass";
 
        /// <summary>
        /// 用户退款成功通知-短信内容模板
        /// </summary>
        public const string SmsTplForRefundSuccess = "smsTplForRefundSuccess";
 
        /// <summary>
        /// 订单付款成功平台通知-短信内容模板
        /// </summary>
        public const string SmsTplForSellerOrderNotice = "smsTplForSellerOrderNotice";
 
        /// <summary>
        /// 通用类型-短信内容模板
        /// </summary>
        public const string SmsTplForCommon = "smsTplForCommon";
 
 
        //网络打印机============================================================================
        /// <summary>
        /// 是否开启
        /// </summary>
        public static readonly string NetWorkPrinterEnabled = "netWorkPrinterEnabled";
        /// <summary>
        /// 应用ID
        /// </summary>
        public static readonly string NetWorkPrinterClientId = "netWorkPrinterClientId";
        /// <summary>
        /// 应用密钥
        /// </summary>
        public static readonly string NetWorkPrinterClientSecret = "netWorkPrinterClientSecret";
        /// <summary>
        /// 打印机设备号
        /// </summary>
        public static readonly string NetWorkPrinterMachineCode = "netWorkPrinterMachineCode";
        /// <summary>
        /// 打印机终端密钥
        /// </summary>
        public static readonly string NetWorkPrinterMsign = "netWorkPrinterMsign";
        /// <summary>
        /// 打印机名称
        /// </summary>
        public static readonly string NetWorkPrinterPrinterName = "netWorkPrinterPrinterName";
        /// <summary>
        /// 打印机设置联系方式
        /// </summary>
        public static readonly string NetWorkPrinterPhone = "netWorkPrinterPhone";
 
        //代理模块============================================================================
 
        /// <summary>
        /// 是否开启代理模块
        /// </summary>
        public static readonly string IsOpenAgent = "isOpenAgent";
 
        /// <summary>
        /// 是否显示代理模块申请及管理入口
        /// </summary>
        public static readonly string IsShowAgentPortal = "isShowAgentPortal";
 
        /// <summary>
        /// 用户须知:
        /// </summary>
        public const string AgentNotes = "agentNotes";
        /// <summary>
        /// 分销协议:
        /// </summary>
        public const string AgentAgreement = "agentAgreement";
        /// <summary>
        /// 是否开启店铺:
        /// </summary>
        public const string AgentStore = "agentStore";
        /// <summary>
        /// 是否允许代理代购服务
        /// </summary>
        public const string IsAllowProcurementService = "isAllowProcurementService";
 
 
        //附件存储============================================================================
 
        /// <summary>
        /// 存储方式
        /// </summary>
        public static readonly string FilesStorageType = "filesStorageType";
        /// <summary>
        /// 存储路径
        /// </summary>
        public static readonly string FilesStoragePath = "filesStoragePath";
        /// <summary>
        /// 文件后缀类型
        /// </summary>
        public static readonly string FilesStorageFileSuffix = "filesStorageFileSuffix";
        /// <summary>
        /// 文件最大大小M
        /// </summary>
        public static readonly string FilesStorageFileMaxSize = "filesStorageFileMaxSize";
 
        /// <summary>
        /// 云存储绑定域名
        /// </summary>
        public static readonly string FilesStorageBucketBindUrl = "filesStorageBucketBindUrl";
        /// <summary>
        /// 云存储授权账户
        /// </summary>
        public static readonly string FilesStorageAccessKeyId = "filesStorageAccessKeyId";
        /// <summary>
        /// 云存储授权密钥
        /// </summary>
        public static readonly string FilesStorageAccessKeySecret = "filesStorageAccessKeySecret";
 
        /// <summary>
        /// 腾讯云账户标识
        /// </summary>
        public static readonly string FilesStorageTencentAccountId = "filesStorageTencentAccountId";
        /// <summary>
        /// 腾讯云存储桶地域
        /// </summary>
        public static readonly string FilesStorageTencentCosRegion = "filesStorageTencentCosRegion";
        /// <summary>
        /// 腾讯云存储桶名称
        /// </summary>
        public static readonly string FilesStorageTencentBucketName = "filesStorageTencentBucketName";
 
        /// <summary>
        /// 阿里云节点
        /// </summary>
        public static readonly string FilesStorageAliYunEndpoint = "filesStorageAliYunEndpoint";
        /// <summary>
        /// 阿里云桶名称
        /// </summary>
        public static readonly string FilesStorageAliYunBucketName = "filesStorageAliYunBucketName";
 
        /// <summary>
        /// 七牛云桶名称
        /// </summary>
        public static readonly string FilesStorageQiNiuBucketName = "filesStorageQiNiuBucketName";
 
 
 
        /// <summary>
        /// 同城配送2公里内
        /// </summary>
        public static readonly string IntraCityServiceBy2KM = "intraCityServiceBy2KM";
 
        /// <summary>
        /// 同城配送5公里内
        /// </summary>
        public static readonly string IntraCityServiceBy5KM = "intraCityServiceBy5KM";
 
        /// <summary>
        /// 同城配送10公里内
        /// </summary>
        public static readonly string IntraCityServiceBy10KM = "intraCityServiceBy10KM";
 
        /// <summary>
        /// 同城配送15公里内
        /// </summary>
        public static readonly string IntraCityServiceBy15KM = "intraCityServiceBy15KM";
 
        /// <summary>
        /// 同城配送20公里内
        /// </summary>
        public static readonly string IntraCityServiceBy20KM = "intraCityServiceBy20KM";
 
        /// <summary>
        /// 同城配送超过20公里内
        /// </summary>
        public static readonly string IntraCityServiceByExceed20KM = "intraCityServiceByExceed20KM";
 
        /// <summary>
        /// 同城配送多少钱免运费
        /// </summary>
        public static readonly string IntraCityServiceFreeCredit = "intraCityServiceFreeCredit";
 
 
 
 
        /// <summary>
        /// 是否开启签到
        /// </summary>
        public static readonly string CheckInIsOpen = "checkInIsOpen";
 
        /// <summary>
        /// 是否签到提醒
        /// </summary>
        public static readonly string CheckInIsAlert = "checkInIsAlert";
 
        /// <summary>
        /// 签到提醒时间
        /// </summary>
        public static readonly string CheckInAlertTime = "checkInAlertTime";
 
        /// <summary>
        /// 普通签到赠送
        /// </summary>
        public static readonly string CheckInCommonNum = "checkInCommonNum";
 
        /// <summary>
        /// 普通签到赠送类型
        /// </summary>
        public static readonly string CheckInCommonType = "checkInCommonType";
 
 
        /// <summary>
        /// 连续签到周期
        /// </summary>
        public static readonly string ContinuousCheckInPeriodType = "continuousCheckInPeriodType";
 
 
        /// <summary>
        /// 显示直播入口
        /// </summary>
        public static readonly string ShowLiveBroadCast = "showLiveBroadCast";
 
        /// <summary>
        /// 是否开启赠送优惠券
        /// </summary>
 
        public static readonly string IsAllowGiveCoupon = "isAllowGiveCoupon";
 
        /// <summary>
        /// 选择注册赠送优惠券
        /// </summary>
        public static readonly string SelectGiveCoupon = "selectGiveCoupon";
 
        /// <summary>
        /// 赠送数量
        /// </summary>
        public static readonly string GiveCouponNumber = "giveCouponNumber";
 
 
       //==>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>百分兵法>>>>>>>>>>>>>>>>>> 增加
        /// <summary>
        /// 经销商对应用户等级KEY 保存后如果是分销审批成功,用户自动切换值该用户组
        /// </summary>
        public static readonly string DictionaryUserGroupKey = "dictionaryUserGroupKey";
 
       /// <summary>
       /// 业绩奖励  开关
       /// </summary>
        public static readonly string DictionaryAchievementOnOff = "dictionaryAchievementOnOff";
 
        /// <summary>
        /// 业绩奖励因子点数  百分比,用于计算业绩奖励
        /// </summary>
        public static readonly string DictionaryAchievementSet = "dictionaryAchievementSet";
 
 
    }
}