johnswang
2021-11-09 abc52b4faa5ede1a9f97c078dad3714109f70d65
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
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
package com.yc.sdk.shopping.entity;
 
import java.util.HashMap;
import java.util.Map;
 
import lombok.Data;
 
public class SettingEntity {
    //常规
    private String metaTitle = null ;  //Meta Tag 标题
    private String metaDescription = null ;  //Meta Tag 描述
    private String metaKeyword = null ;  //Meta Tag 关键字
 
    //商店设置
    private String name = null ;   //商店名称
    private String owner = null ;  //商店管理员
    private String address = null ;  //联系地址
    private String geoCode = null ;  //地理编码
    private String longitude = null ; //地理经度
    private String latitude = null ; //地理纬度
    private String email = null ;   //电子邮箱
    private String telephone = null ;  //联系电话
    private String fax = null ;   //传真号码
    private String image = null ;   //图像
    private String imageUrl = null ;  //图像URL
    private String openDate = null ;  //营业时间
    private String comment = null ;  //附言
 
    //本地化设置
    private String currency = null ;  //货币设置
    private Boolean currencyAuto = false ; //汇率更新
    private String     lengthClassId = null ;   //尺寸单位
    private String weightClassId = null ;   //重量单位
    private Integer langId = null ;   //缺省语言
    private boolean isShowMatCode = true ; //显示商品编号
    private boolean isShowMatName = true ; //显示商品名称
    private boolean isShowSpecial = true ; //显示商品规格
    private boolean isShowPoints = true ;  //显示积分
    private boolean isShowDescription = true ; //显示商品描述
    private int productListStyle =  0 ;  //商品列表样式    0:竖向1栏,1:竖向2栏,2:竖向3栏,3:横向1行
    private int productDetailStyle = 0 ;  //商品明细样式  0:古典(商品描述页卡在主图下面),1:时尚(商品描述页卡在主图上面)
    private int categoryListStyle = 0 ;  //商品分类样式 0:分类显示在页面左边(分类+商品列表) ,1:分类显示在页面顶部(分类+商品列表),2:分类显示在页面左边(主分类+明细分类列表,类似京东商品分类)
    private int myPageStyle = 0 ; //我的页面样式  0:经典,1:简洁
    //商品设置
    private Boolean productCount = false ;   //商品分类显示总数
    private Integer productLimit = null ;   //每页默认商品数量 (前台管理)
    private Integer productDescriptionLength = null ;   //显示商品描述限制 (前台管理)
 
    //商品评论设置
    private Boolean reviewStatus = false ;   //允许商品评论
    private Boolean reviewGuest = false ;   //允许未注册客户评论
    private Boolean reviewMail = false ;   //新评论邮件提醒
    private boolean isShowSalesCharts = false ;  //显示销售热品(订单排行)
 
    //礼品券设置
    private Integer voucherMin = null ;   //最小礼品券数
    private Integer voucherMax = null ;   //最大礼品券数
 
    //税率设置
    private Boolean tax = false ;   //价格含税
    private String taxDefault = null ;   //使用商店所在地税率
    private String taxCustomer = null ;  //使用客户所在地税率
 
    //账户设置
    private String accountId = null ;   //账户条款
 
    //结账设置
    private Boolean cartWeight = false ;   //在购物车中显示重量
    private String checkoutId = null ;   //结账条款
    private String orderStatusId = null ;   //订单状态
 
    //商品库存设置
    private Boolean stockDisplay = false ;   //显示库存
    private Boolean stockWarning = false ;   //显示脱销警告
    private Boolean stockCheckout = false ;  //允许脱销结账
 
    //图片设置
    private String logo = null ;  //网店图标
    private String logoUrl = null ; //网店图标URL
    private String icon = null ;  //Icon 图标
    private String iconUrl = null ; //Icon 图标URL
    private Integer imageBrandWidth = null ;  //品牌图片尺寸
    private Integer imageBrandHeight = null ;  //品牌图片尺寸
    private boolean isShowBrandOrgImage = false ;  //显示原图
    private Integer imageLogoWidth = null ; //网店图标Logo尺寸
    private Integer imageLogoHeight = null ; //网店图标Logo尺寸
    private boolean isShowLogoOrgImage = false ;  //显示原图
    private Integer imageCategoryWidth = null ;   //分类列表图的尺寸
    private Integer imageCategoryHeight = null ;  //分类列表图的尺寸
    private boolean isShowCategoryOrgImage = false ;  //显示原图
    private Integer imageThumbWidth = null ;  //商品缩略图片尺寸
    private Integer imageThumbHeight = null ;  //商品缩略图片尺寸
    private boolean isShowThumbOrgImage = false ;  //显示原图
    private Integer imagePopupWidth = null ;   //商品弹出图片尺寸
    private Integer imagePopupHeight = null ;   //商品弹出图片尺寸
    private boolean isShowPopupOrgImage = false ;  //显示原图
    private Integer imageProductWidth = null ;  //商品列表图的尺寸
    private Integer imageProductHeight = null ;  //商品列表图的尺寸
    private boolean isShowProductOrgImage = false ;  //显示原图
    private Integer imageAdditionalWidth = null ;  //附加商品图像尺寸
    private Integer imageAdditionalHeight = null ;  //附加商品图像尺寸
    private boolean isShowAdditionalOrgImage = false ;  //显示原图
    private Integer imageRelatedWidth = null ;   //关联商品图像尺寸
    private Integer imageRelatedHeight = null ;  //关联商品图像尺寸
    private boolean isShowRelatedOrgImage = false ;  //显示原图
    private Integer imageCompareWidth = null ;   //对比图片尺寸
    private Integer imageCompareHeight = null ;  //对比图片尺寸
    private boolean isShowCompareOrgImage = false ;  //显示原图
    private Integer imageWishlistWidth = null ;  //收藏图片尺寸
    private Integer imageWishlistHeight = null ;  //收藏图片尺寸
    private boolean isShowWishlistOrgImage = false ;  //显示原图
    private Integer imageCartWidth = null ;   //购物车图像尺寸
    private Integer imageCartHeight = null ;  //购物车图像尺寸
    private boolean isShowCartOrgImage = false ;  //显示原图
    private Integer imageLocationWidth = null ;   //商店图片大小
    private Integer imageLocationHeight = null ;  //商店图片大小
    private boolean isShowLocationOrgImage = false ;  //显示原图
    private Integer imageBannerWidth = null ; //广告条banner尺寸
    private Integer imageBannerHeight = null ; //广告条banner尺寸
    private boolean isShowBannerOrgImage = false ;  //显示原图
    private Integer imageManufacturerWidth = null ; //制造工厂图片尺寸
    private Integer imageManufacturerHeight = null ; //制造工厂图片尺寸
    private boolean isShowManufacturerOrgImage = false ;  //显示原图
    
    
    private boolean isModifyProfile = false;  //允许修改我的账户
    private boolean isModifyPassword = false;  //允许修改密码
    private boolean isModifyAddress = false;  //允许修改地址
    private boolean isModifyDistributor = false;  //查看分销情况
    private boolean isModifyWishList = false;  //查看收藏夹
    private boolean isModifyOrder = false;  //查看我的订单
    private boolean isModifyReward = false;   //显示我的积分
    private boolean isShowBalance = false;   //显示我的余额
    private boolean isShowMyWallet = false;   //显示我的钱包
    private boolean isModifyContact = false;  //显示联系我们
    private boolean isModifyReturn = false;  //允许退换服务
    private boolean isModifyAttention;   //允许关注我们
    private boolean isModifyBrand = false;   //显示品牌专区
    private boolean isModifyVoucher = false;   //允许购买礼品卷
    private boolean isModifySpecialoffer = false ;  //显示特别优惠
    private boolean isModifyWxUser = false ;  //显示微信新用户
    private boolean isShowMyCustomer = false ; //显示我的客户
    private String wxPayAcctCode = null ; //微信支付时对应的ERP系统账户户
    
    private boolean isShowDistributorAddress = false ; //是否显示经销商(门店)地址
    private boolean isShowCompare = false ; //是否显示比对菜单
 
    private String couponsBuyReminderTemplateId = null ; //优惠劵抢购提醒
    private double startingPointForRedemption = 0 ;  //积分兑换起点
    private boolean isShowBuyButtonOnHomePage = false ; //主页显示购买按钮
    private boolean isShowRatingOnHomePage = false ; //主页显示商品评分
    private String defaultShopCcCode = null ; //缺省门店编号
    private String defaultShopCcName = null ; ////缺省门店名称
    private double sharedPoints=0;//分享时获得积分
    private boolean isAllowWithdraw=false;//允许提现
    private double withdrawAmount=0;//单次提现最大金额
    private double withdrawTimes=0;//允许当日提现次数
    private double withdrawTaxRate = 0 ;  //余额提现税率
    private boolean isAllowRecharge=false;//允许充值
    private String withdrawType=null;//提现方式: WeChatWallet 微信零钱; BankCard 银行卡
    private boolean isShowCategory = false ; //显示商品分类
    private boolean isShowNaviByCcCode = false ; //显示门店导航
    
    private boolean isShowMatGroupInHomePage = false ;  //首页内嵌商品分类
    private String homePageBackgroundColor = null ;  //首页标题背景色
    
    private String subscriptionReminderTemplateId = null ; //关注时提醒介绍人模板
    private String subscriptionNotificationTemplateId = null ; //关注时通知本人模板
    private boolean isStartupMatName2 = false ; //启用MatName2
    private String matName2Label = null ;   //MatName2标签
    private boolean isStartupMatName3 = false ; //启用MatName3
    private String matName3Label = null;  //MatName3标签
    private boolean isStartupMatName4 = false; //启用MatName4
    private String matName4Label= null;  //MatName4标签
    
    private String countryName = null  ;  //国家
    private String provinceName = null ;  //省
    private String cityName = null ;  //市
    private String countyName = null ; //区县
    
    private String homeLayoutStyle = null ; //首页布局样式 ,Normal:常规商城样式 ,Cosmo:卡思摩简洁样式  
    private String cosmoHomePageImage = null ;  //卡思摩样式首页图片 
    private String cosmoHomePageImageUrl = null ;  //卡思摩样式首页图片URL
    private String normalSearchKey = null ; //热门搜索关键词,多值用分号隔开 
    
    private String chooseFloorId = null ;  //如何选地板 
    private boolean isPullTelephoneWhenViewProductDetail = false ;  //看产品强取手机号
    
    private String receiverForSalesOrder = null ;  //商城订单接收人
    private String receiverTemplateForSalesOrder = null ; //订单接收信息模板
    
    private Integer generateOrderProcess = 0 ;   //0.生成订单可立即支付 ,1.生成订单,导购审核后才能支付(适用于生鲜类卖家,卖牛肉牛排的 ,他们按份卖,客户下单 时1份,假设1份 500克,实际卖出时是按称重卖的,可能有 510克,那最后付款也是按 510克付。)
    private String shoppingGroupName = null ;  //下单分享购物群名
    
    //private String salesOrderNoticeTemplateId = null ; //小程序订单通知模板
    private String couponsBuyReminderTemplateIdForMiniApp = null ; //小程序抢劵提醒模板
    
    private String miniProgramState = null ; //跳转小程序类型:developer为开发版;trial为体验版;formal为正式版;默认为正式版
    private Integer remindBeforeExpiration = 5 ; //小程序抢劵提醒: 多少分钟前提醒
    
    private String aiMessageDefaultTemplateId = null ; //小程序:AI雷达消息缺省模板
    
    private Map<Integer,OrderNoticeTemplateId> orderNoticeTemplateIdList = new HashMap<Integer,OrderNoticeTemplateId>() ;  //订阅消息模板 
 
    private boolean isAllowReturnOrder ;  //允许取消单和退货
    private boolean isStartupLeagueShopCcCode ; //启用联盟门店管理
    private int cardStyle ;  //名片样式
    private String defaultSourceInfo ; //新客户注册:缺省来源
    
    private String hometownGreetingsImage ; //同乡问候语图片
    private String schoolmateGreetingsImage ; //校友问候语图片
    
    private Integer parallelNumberForInnerMenuOnHomePage ; //内嵌菜单在首页并排显示个数 
    private boolean isShowPoster ;  //显示制作海报
    private boolean isAllowSelectDeliveryMethod ;    //允许选择配送方式
    private String deliveryMethod ; //配送方式: 1.到店自提 , 2.配送到家
    
    private boolean isShowLiveBannerPhotoOnHomePage ;  //首页显示直播广告
    private String liveBannerPhoto ; //直播广告图片
    private boolean isShowBannerPhotoOnHomePageForLiveUser  ;  //是否允许 单个直播显示在首页上 
 
    private boolean isStartupPriceSubsystem ;  //启用价格子系统
    private String priceSubsystemMemberLevels ; //价格子系统客户级别
    
    private Integer isStartupBalancePay ; //是否启用余额支付: 0.不启用余额支付 , 1.自动勾选余额支付, 2.手动勾选余额支付 
    
    private boolean isShowBuyingButton ; //是否显示购买按钮
    private boolean isShowElectronicVoucherButton ; //是否显示电子兑换劵
    private Double personalAuthenticationAmount ; //个人认证金额
    
    private Integer paymentCountdown ;  //支付倒计时分钟
    
    private Double feeRateForWxPay ; //微信支付时腾讯官方扣除手续率,新版小程序用于页在提醒
    private Double platformOperatorCommissionRatio ; //微信支付时平台方扣除手续费率,新版小程序用于页在提醒
    
    private Integer withdrawalExpiryHours ; //非谁用户提现多少小时到账,如果是0 ,则表示立即到账
    private String helpUrl ; //小鸟快销帮助文档地址
    
    private boolean isShowPreSendDate ;  //提交订单时,是否显示交货日期
    
    public boolean isShowPreSendDate() {
        return isShowPreSendDate;
    }
 
    public void setShowPreSendDate(boolean isShowPreSendDate) {
        this.isShowPreSendDate = isShowPreSendDate;
    }
 
    public String getHelpUrl() {
        return helpUrl;
    }
 
    public void setHelpUrl(String helpUrl) {
        this.helpUrl = helpUrl;
    }
 
    public Integer getWithdrawalExpiryHours() {
        return withdrawalExpiryHours;
    }
 
    public void setWithdrawalExpiryHours(Integer withdrawalExpiryHours) {
        this.withdrawalExpiryHours = withdrawalExpiryHours;
    }
 
    public Double getFeeRateForWxPay() {
        return feeRateForWxPay;
    }
 
    public void setFeeRateForWxPay(Double feeRateForWxPay) {
        this.feeRateForWxPay = feeRateForWxPay;
    }
 
    public Double getPlatformOperatorCommissionRatio() {
        return platformOperatorCommissionRatio;
    }
 
    public void setPlatformOperatorCommissionRatio(Double platformOperatorCommissionRatio) {
        this.platformOperatorCommissionRatio = platformOperatorCommissionRatio;
    }
 
    public Integer getPaymentCountdown() {
        return paymentCountdown;
    }
 
    public void setPaymentCountdown(Integer paymentCountdown) {
        this.paymentCountdown = paymentCountdown;
    }
 
    public Double getPersonalAuthenticationAmount() {
        return personalAuthenticationAmount;
    }
 
    public void setPersonalAuthenticationAmount(Double personalAuthenticationAmount) {
        this.personalAuthenticationAmount = personalAuthenticationAmount;
    }
 
    public boolean isShowBuyingButton() {
        return isShowBuyingButton;
    }
 
    public void setShowBuyingButton(boolean isShowBuyingButton) {
        this.isShowBuyingButton = isShowBuyingButton;
    }
 
    public boolean isShowElectronicVoucherButton() {
        return isShowElectronicVoucherButton;
    }
 
    public void setShowElectronicVoucherButton(boolean isShowElectronicVoucherButton) {
        this.isShowElectronicVoucherButton = isShowElectronicVoucherButton;
    }
 
    public Integer getIsStartupBalancePay() {
        return isStartupBalancePay;
    }
 
    public void setIsStartupBalancePay(Integer isStartupBalancePay) {
        this.isStartupBalancePay = isStartupBalancePay;
    }
 
    public boolean isStartupPriceSubsystem() {
        return isStartupPriceSubsystem;
    }
 
    public void setStartupPriceSubsystem(boolean isStartupPriceSubsystem) {
        this.isStartupPriceSubsystem = isStartupPriceSubsystem;
    }
 
    public String getPriceSubsystemMemberLevels() {
        return priceSubsystemMemberLevels;
    }
 
    public void setPriceSubsystemMemberLevels(String priceSubsystemMemberLevels) {
        this.priceSubsystemMemberLevels = priceSubsystemMemberLevels;
    }
 
    public boolean isShowLiveBannerPhotoOnHomePage() {
        return isShowLiveBannerPhotoOnHomePage;
    }
 
    public void setShowLiveBannerPhotoOnHomePage(boolean isShowLiveBannerPhotoOnHomePage) {
        this.isShowLiveBannerPhotoOnHomePage = isShowLiveBannerPhotoOnHomePage;
    }
 
    public String getLiveBannerPhoto() {
        return liveBannerPhoto;
    }
 
    public void setLiveBannerPhoto(String liveBannerPhoto) {
        this.liveBannerPhoto = liveBannerPhoto;
    }
 
    public boolean isShowBannerPhotoOnHomePageForLiveUser() {
        return isShowBannerPhotoOnHomePageForLiveUser;
    }
 
    public void setShowBannerPhotoOnHomePageForLiveUser(boolean isShowBannerPhotoOnHomePageForLiveUser) {
        this.isShowBannerPhotoOnHomePageForLiveUser = isShowBannerPhotoOnHomePageForLiveUser;
    }
 
    public boolean isAllowSelectDeliveryMethod() {
        return isAllowSelectDeliveryMethod;
    }
 
    public void setAllowSelectDeliveryMethod(boolean isAllowSelectDeliveryMethod) {
        this.isAllowSelectDeliveryMethod = isAllowSelectDeliveryMethod;
    }
 
    public String getDeliveryMethod() {
        return deliveryMethod;
    }
 
    public void setDeliveryMethod(String deliveryMethod) {
        this.deliveryMethod = deliveryMethod;
    }
 
    public String getWithdrawType() {
        return withdrawType;
    }
 
    public void setWithdrawType(String withdrawType) {
        this.withdrawType = withdrawType;
    }
 
    public boolean isShowPoster() {
        return isShowPoster;
    }
 
    public void setShowPoster(boolean isShowPoster) {
        this.isShowPoster = isShowPoster;
    }
 
    public Integer getParallelNumberForInnerMenuOnHomePage() {
        return parallelNumberForInnerMenuOnHomePage;
    }
 
    public void setParallelNumberForInnerMenuOnHomePage(Integer parallelNumberForInnerMenuOnHomePage) {
        this.parallelNumberForInnerMenuOnHomePage = parallelNumberForInnerMenuOnHomePage;
    }
 
    public String getHometownGreetingsImage() {
        return hometownGreetingsImage;
    }
 
    public void setHometownGreetingsImage(String hometownGreetingsImage) {
        this.hometownGreetingsImage = hometownGreetingsImage;
    }
 
    public String getSchoolmateGreetingsImage() {
        return schoolmateGreetingsImage;
    }
 
    public void setSchoolmateGreetingsImage(String schoolmateGreetingsImage) {
        this.schoolmateGreetingsImage = schoolmateGreetingsImage;
    }
 
    public int getCardStyle() {
        return cardStyle;
    }
 
    public void setCardStyle(int cardStyle) {
        this.cardStyle = cardStyle;
    }
 
    public String getDefaultSourceInfo() {
        return defaultSourceInfo;
    }
 
    public void setDefaultSourceInfo(String defaultSourceInfo) {
        this.defaultSourceInfo = defaultSourceInfo;
    }
 
    public boolean isStartupLeagueShopCcCode() {
        return isStartupLeagueShopCcCode;
    }
 
    public void setStartupLeagueShopCcCode(boolean isStartupLeagueShopCcCode) {
        this.isStartupLeagueShopCcCode = isStartupLeagueShopCcCode;
    }
 
    public boolean isAllowReturnOrder() {
        return isAllowReturnOrder;
    }
 
    public void setAllowReturnOrder(boolean isAllowReturnOrder) {
        this.isAllowReturnOrder = isAllowReturnOrder;
    }
 
 
    @Data
    public class OrderNoticeTemplateId {
        private Integer formId = null ; //使用的功能号 
        private String pendingReviewTemplateId = null ; // 待称重模板消息 (来源于表:t710166H)
        private String payableTemplateId = null ; //  待支付模板消息 (来源于表:t710166H)
        private String templateId = null ; // 支付成功模板消息 (来源于表:t710166H)
        private String shippedTemplateId = null ; //  已发货模板消息 (来源于表:t710166H)
        private String returnsNoticeTemplateId = null; //退货模板消息 (来源于表:t710166H)
        private String cancelOrderNoticeTemplateId = null; //取消订单模板消息 (来源于表:t710166H)
        
    }
    
    public void addOrderNoticeTemplateId(Integer formId, OrderNoticeTemplateId orderNoticeTemplateId) {
        this.orderNoticeTemplateIdList.put(formId, orderNoticeTemplateId);
    }
    
    public Map<Integer, OrderNoticeTemplateId> getOrderNoticeTemplateIdList() {
        return orderNoticeTemplateIdList;
    }
 
    public void setOrderNoticeTemplateIdList(Map<Integer, OrderNoticeTemplateId> orderNoticeTemplateIdList) {
        this.orderNoticeTemplateIdList = orderNoticeTemplateIdList;
    }
 
    public String getAiMessageDefaultTemplateId() {
        return aiMessageDefaultTemplateId;
    }
    public void setAiMessageDefaultTemplateId(String aiMessageDefaultTemplateId) {
        this.aiMessageDefaultTemplateId = aiMessageDefaultTemplateId;
    }
 
    public String getMiniProgramState() {
        return miniProgramState;
    }
    public void setMiniProgramState(String miniProgramState) {
        this.miniProgramState = miniProgramState;
    }
    public Integer getRemindBeforeExpiration() {
        return remindBeforeExpiration;
    }
    public void setRemindBeforeExpiration(Integer remindBeforeExpiration) {
        this.remindBeforeExpiration = remindBeforeExpiration;
    }
 
    public String getCouponsBuyReminderTemplateIdForMiniApp() {
        return couponsBuyReminderTemplateIdForMiniApp;
    }
    public void setCouponsBuyReminderTemplateIdForMiniApp(String couponsBuyReminderTemplateIdForMiniApp) {
        this.couponsBuyReminderTemplateIdForMiniApp = couponsBuyReminderTemplateIdForMiniApp;
    }
    public String getShoppingGroupName() {
        return shoppingGroupName;
    }
    public void setShoppingGroupName(String shoppingGroupName) {
        this.shoppingGroupName = shoppingGroupName;
    }
    public Integer getGenerateOrderProcess() {
        return generateOrderProcess;
    }
    public void setGenerateOrderProcess(Integer generateOrderProcess) {
        this.generateOrderProcess = generateOrderProcess;
    }
    public boolean isShowBalance() {
        return isShowBalance;
    }
    public void setShowBalance(boolean isShowBalance) {
        this.isShowBalance = isShowBalance;
    }
    public boolean isShowMyWallet() {
        return isShowMyWallet;
    }
    public void setShowMyWallet(boolean isShowMyWallet) {
        this.isShowMyWallet = isShowMyWallet;
    }
    public String getReceiverForSalesOrder() {
        return receiverForSalesOrder;
    }
    public void setReceiverForSalesOrder(String receiverForSalesOrder) {
        this.receiverForSalesOrder = receiverForSalesOrder;
    }
    public String getReceiverTemplateForSalesOrder() {
        return receiverTemplateForSalesOrder;
    }
    public void setReceiverTemplateForSalesOrder(String receiverTemplateForSalesOrder) {
        this.receiverTemplateForSalesOrder = receiverTemplateForSalesOrder;
    }
    public boolean isPullTelephoneWhenViewProductDetail() {
        return isPullTelephoneWhenViewProductDetail;
    }
    public void setPullTelephoneWhenViewProductDetail(boolean isPullTelephoneWhenViewProductDetail) {
        this.isPullTelephoneWhenViewProductDetail = isPullTelephoneWhenViewProductDetail;
    }
    public String getImageUrl() {
        return imageUrl;
    }
    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }
    public String getLogoUrl() {
        return logoUrl;
    }
    public void setLogoUrl(String logoUrl) {
        this.logoUrl = logoUrl;
    }
    public String getIconUrl() {
        return iconUrl;
    }
    public void setIconUrl(String iconUrl) {
        this.iconUrl = iconUrl;
    }
    public String getChooseFloorId() {
        return chooseFloorId;
    }
    public void setChooseFloorId(String chooseFloorId) {
        this.chooseFloorId = chooseFloorId;
    }
    public String getNormalSearchKey() {
        return normalSearchKey;
    }
    public void setNormalSearchKey(String normalSearchKey) {
        this.normalSearchKey = normalSearchKey;
    }
    public String getCosmoHomePageImageUrl() {
        return cosmoHomePageImageUrl;
    }
    public void setCosmoHomePageImageUrl(String cosmoHomePageImageUrl) {
        this.cosmoHomePageImageUrl = cosmoHomePageImageUrl;
    }
    public String getCosmoHomePageImage() {
        return cosmoHomePageImage;
    }
    public void setCosmoHomePageImage(String cosmoHomePageImage) {
        this.cosmoHomePageImage = cosmoHomePageImage;
    }
    public String getHomeLayoutStyle() {
        return homeLayoutStyle;
    }
    public void setHomeLayoutStyle(String homeLayoutStyle) {
        this.homeLayoutStyle = homeLayoutStyle;
    }
    public String getCountryName() {
        return countryName;
    }
    public void setCountryName(String countryName) {
        this.countryName = countryName;
    }
    public String getProvinceName() {
        return provinceName;
    }
    public void setProvinceName(String provinceName) {
        this.provinceName = provinceName;
    }
    public String getCityName() {
        return cityName;
    }
    public void setCityName(String cityName) {
        this.cityName = cityName;
    }
    public String getCountyName() {
        return countyName;
    }
    public void setCountyName(String countyName) {
        this.countyName = countyName;
    }
    private boolean isShowBrand = false ; //是否显示商品品牌
    
    public boolean isShowBrand() {
        return isShowBrand;
    }
    public void setShowBrand(boolean isShowBrand) {
        this.isShowBrand = isShowBrand;
    }
    public boolean isStartupMatName2() {
        return isStartupMatName2;
    }
    public void setStartupMatName2(boolean isStartupMatName2) {
        this.isStartupMatName2 = isStartupMatName2;
    }
    public String getMatName2Label() {
        return matName2Label;
    }
    public void setMatName2Label(String matName2Label) {
        this.matName2Label = matName2Label;
    }
    public boolean isStartupMatName3() {
        return isStartupMatName3;
    }
    public void setStartupMatName3(boolean isStartupMatName3) {
        this.isStartupMatName3 = isStartupMatName3;
    }
    public String getMatName3Label() {
        return matName3Label;
    }
    public void setMatName3Label(String matName3Label) {
        this.matName3Label = matName3Label;
    }
    public boolean isStartupMatName4() {
        return isStartupMatName4;
    }
    public void setStartupMatName4(boolean isStartupMatName4) {
        this.isStartupMatName4 = isStartupMatName4;
    }
    public String getMatName4Label() {
        return matName4Label;
    }
    public void setMatName4Label(String matName4Label) {
        this.matName4Label = matName4Label;
    }
    public String getSubscriptionReminderTemplateId() {
        return subscriptionReminderTemplateId;
    }
    public void setSubscriptionReminderTemplateId(String subscriptionReminderTemplateId) {
        this.subscriptionReminderTemplateId = subscriptionReminderTemplateId;
    }
    public String getSubscriptionNotificationTemplateId() {
        return subscriptionNotificationTemplateId;
    }
    public void setSubscriptionNotificationTemplateId(String subscriptionNotificationTemplateId) {
        this.subscriptionNotificationTemplateId = subscriptionNotificationTemplateId;
    }
    public String getHomePageBackgroundColor() {
        return homePageBackgroundColor;
    }
    public void setHomePageBackgroundColor(String homePageBackgroundColor) {
        this.homePageBackgroundColor = homePageBackgroundColor;
    }
    public String getDefaultShopCcName() {
        return defaultShopCcName;
    }
    public void setDefaultShopCcName(String defaultShopCcName) {
        this.defaultShopCcName = defaultShopCcName;
    }
    public boolean isShowMatGroupInHomePage() {
        return isShowMatGroupInHomePage;
    }
    public void setShowMatGroupInHomePage(boolean isShowMatGroupInHomePage) {
        this.isShowMatGroupInHomePage = isShowMatGroupInHomePage;
    }
    public double getWithdrawTaxRate() {
        return withdrawTaxRate;
    }
    public void setWithdrawTaxRate(double withdrawTaxRate) {
        this.withdrawTaxRate = withdrawTaxRate;
    }
    public int getMyPageStyle() {
        return myPageStyle;
    }
    public void setMyPageStyle(int myPageStyle) {
        this.myPageStyle = myPageStyle;
    }
    public boolean isShowCategory() {
        return isShowCategory;
    }
    public void setShowCategory(boolean isShowCategory) {
        this.isShowCategory = isShowCategory;
    }
    public boolean isShowNaviByCcCode() {
        return isShowNaviByCcCode;
    }
    public void setShowNaviByCcCode(boolean isShowNaviByCcCode) {
        this.isShowNaviByCcCode = isShowNaviByCcCode;
    }
    public double getSharedPoints() {
        return sharedPoints;
    }
    public void setSharedPoints(double sharedPoints) {
        this.sharedPoints = sharedPoints;
    }
    public boolean isAllowWithdraw() {
        return isAllowWithdraw;
    }
    public void setAllowWithdraw(boolean isAllowWithdraw) {
        this.isAllowWithdraw = isAllowWithdraw;
    }
    public double getWithdrawAmount() {
        return withdrawAmount;
    }
    public void setWithdrawAmount(double withdrawAmount) {
        this.withdrawAmount = withdrawAmount;
    }
    public double getWithdrawTimes() {
        return withdrawTimes;
    }
    public void setWithdrawTimes(double withdrawTimes) {
        this.withdrawTimes = withdrawTimes;
    }
    public boolean isAllowRecharge() {
        return isAllowRecharge;
    }
    public void setAllowRecharge(boolean isAllowRecharge) {
        this.isAllowRecharge = isAllowRecharge;
    }
    public String getDefaultShopCcCode() {
        return defaultShopCcCode;
    }
    public void setDefaultShopCcCode(String defaultShopCcCode) {
        this.defaultShopCcCode = defaultShopCcCode;
    }
    public boolean isShowRatingOnHomePage() {
        return isShowRatingOnHomePage;
    }
    public void setShowRatingOnHomePage(boolean isShowRatingOnHomePage) {
        this.isShowRatingOnHomePage = isShowRatingOnHomePage;
    }
    public boolean isShowBuyButtonOnHomePage() {
        return isShowBuyButtonOnHomePage;
    }
    public void setShowBuyButtonOnHomePage(boolean isShowBuyButtonOnHomePage) {
        this.isShowBuyButtonOnHomePage = isShowBuyButtonOnHomePage;
    }
    public double getStartingPointForRedemption() {
        return startingPointForRedemption;
    }
    public void setStartingPointForRedemption(double startingPointForRedemption) {
        this.startingPointForRedemption = startingPointForRedemption;
    }
    public String getCouponsBuyReminderTemplateId() {
        return couponsBuyReminderTemplateId;
    }
    public void setCouponsBuyReminderTemplateId(String couponsBuyReminderTemplateId) {
        this.couponsBuyReminderTemplateId = couponsBuyReminderTemplateId;
    }
    public boolean isShowCompare() {
        return isShowCompare;
    }
    public void setShowCompare(boolean isShowCompare) {
        this.isShowCompare = isShowCompare;
    }
    public boolean isShowDistributorAddress() {
        return isShowDistributorAddress;
    }
    public void setShowDistributorAddress(boolean isShowDistributorAddress) {
        this.isShowDistributorAddress = isShowDistributorAddress;
    }
    public int getCategoryListStyle() {
        return categoryListStyle;
    }
    public void setCategoryListStyle(int categoryListStyle) {
        this.categoryListStyle = categoryListStyle;
    }
    public int getProductListStyle() {
        return productListStyle;
    }
    public void setProductListStyle(int productListStyle) {
        this.productListStyle = productListStyle;
    }
    public int getProductDetailStyle() {
        return productDetailStyle;
    }
    public void setProductDetailStyle(int productDetailStyle) {
        this.productDetailStyle = productDetailStyle;
    }
    public boolean isShowDescription() {
        return isShowDescription;
    }
    public void setShowDescription(boolean isShowDescription) {
        this.isShowDescription = isShowDescription;
    }
    public String getWxPayAcctCode() {
        return wxPayAcctCode;
    }
    public void setWxPayAcctCode(String wxPayAcctCode) {
        this.wxPayAcctCode = wxPayAcctCode;
    }
    public boolean isShowMyCustomer() {
        return isShowMyCustomer;
    }
    public void setShowMyCustomer(boolean isShowMyCustomer) {
        this.isShowMyCustomer = isShowMyCustomer;
    }
    public boolean isShowPoints() {
        return isShowPoints;
    }
    public void setShowPoints(boolean isShowPoints) {
        this.isShowPoints = isShowPoints;
    }
    public String getLongitude() {
        return longitude;
    }
    public void setLongitude(String longitude) {
        this.longitude = longitude;
    }
    public String getLatitude() {
        return latitude;
    }
    public void setLatitude(String latitude) {
        this.latitude = latitude;
    }
    public boolean isModifyWxUser() {
        return isModifyWxUser;
    }
    public void setModifyWxUser(boolean isModifyWxUser) {
        this.isModifyWxUser = isModifyWxUser;
    }
    public boolean isModifyProfile() {
        return isModifyProfile;
    }
    public void setModifyProfile(boolean isModifyProfile) {
        this.isModifyProfile = isModifyProfile;
    }
    public boolean isModifyPassword() {
        return isModifyPassword;
    }
    public void setModifyPassword(boolean isModifyPassword) {
        this.isModifyPassword = isModifyPassword;
    }
    public boolean isModifyAddress() {
        return isModifyAddress;
    }
    public void setModifyAddress(boolean isModifyAddress) {
        this.isModifyAddress = isModifyAddress;
    }
    public boolean isModifyDistributor() {
        return isModifyDistributor;
    }
    public void setModifyDistributor(boolean isModifyDistributor) {
        this.isModifyDistributor = isModifyDistributor;
    }
    public boolean isModifyWishList() {
        return isModifyWishList;
    }
    public void setModifyWishList(boolean isModifyWishList) {
        this.isModifyWishList = isModifyWishList;
    }
    public boolean isModifyOrder() {
        return isModifyOrder;
    }
    public void setModifyOrder(boolean isModifyOrder) {
        this.isModifyOrder = isModifyOrder;
    }
    public boolean isModifyReward() {
        return isModifyReward;
    }
    public void setModifyReward(boolean isModifyReward) {
        this.isModifyReward = isModifyReward;
    }
    public boolean isModifyContact() {
        return isModifyContact;
    }
    public void setModifyContact(boolean isModifyContact) {
        this.isModifyContact = isModifyContact;
    }
    public boolean isModifyReturn() {
        return isModifyReturn;
    }
    public void setModifyReturn(boolean isModifyReturn) {
        this.isModifyReturn = isModifyReturn;
    }
    public boolean isModifyAttention() {
        return isModifyAttention;
    }
    public void setModifyAttention(boolean isModifyAttention) {
        this.isModifyAttention = isModifyAttention;
    }
    public boolean isModifyBrand() {
        return isModifyBrand;
    }
    public void setModifyBrand(boolean isModifyBrand) {
        this.isModifyBrand = isModifyBrand;
    }
    public boolean isModifyVoucher() {
        return isModifyVoucher;
    }
    public void setModifyVoucher(boolean isModifyVoucher) {
        this.isModifyVoucher = isModifyVoucher;
    }
    public boolean isModifySpecialoffer() {
        return isModifySpecialoffer;
    }
    public void setModifySpecialoffer(boolean isModifySpecialoffer) {
        this.isModifySpecialoffer = isModifySpecialoffer;
    }
    public boolean isShowMatCode() {
        return isShowMatCode;
    }
    public void setShowMatCode(boolean isShowMatCode) {
        this.isShowMatCode = isShowMatCode;
    }
    public boolean isShowMatName() {
        return isShowMatName;
    }
    public void setShowMatName(boolean isShowMatName) {
        this.isShowMatName = isShowMatName;
    }
    public boolean isShowSpecial() {
        return isShowSpecial;
    }
    public void setShowSpecial(boolean isShowSpecial) {
        this.isShowSpecial = isShowSpecial;
    }
    //服务器设置
    private Boolean maintenance = false ;   //系统维护模式
    
    public boolean isShowBrandOrgImage() {
        return isShowBrandOrgImage;
    }
    public void setShowBrandOrgImage(boolean isShowBrandOrgImage) {
        this.isShowBrandOrgImage = isShowBrandOrgImage;
    }
    public boolean isShowLogoOrgImage() {
        return isShowLogoOrgImage;
    }
    public void setShowLogoOrgImage(boolean isShowLogoOrgImage) {
        this.isShowLogoOrgImage = isShowLogoOrgImage;
    }
    public boolean isShowCategoryOrgImage() {
        return isShowCategoryOrgImage;
    }
    public void setShowCategoryOrgImage(boolean isShowCategoryOrgImage) {
        this.isShowCategoryOrgImage = isShowCategoryOrgImage;
    }
    public boolean isShowThumbOrgImage() {
        return isShowThumbOrgImage;
    }
    public void setShowThumbOrgImage(boolean isShowThumbOrgImage) {
        this.isShowThumbOrgImage = isShowThumbOrgImage;
    }
    public boolean isShowPopupOrgImage() {
        return isShowPopupOrgImage;
    }
    public void setShowPopupOrgImage(boolean isShowPopupOrgImage) {
        this.isShowPopupOrgImage = isShowPopupOrgImage;
    }
    public boolean isShowProductOrgImage() {
        return isShowProductOrgImage;
    }
    public void setShowProductOrgImage(boolean isShowProductOrgImage) {
        this.isShowProductOrgImage = isShowProductOrgImage;
    }
    public boolean isShowAdditionalOrgImage() {
        return isShowAdditionalOrgImage;
    }
    public void setShowAdditionalOrgImage(boolean isShowAdditionalOrgImage) {
        this.isShowAdditionalOrgImage = isShowAdditionalOrgImage;
    }
    public boolean isShowRelatedOrgImage() {
        return isShowRelatedOrgImage;
    }
    public void setShowRelatedOrgImage(boolean isShowRelatedOrgImage) {
        this.isShowRelatedOrgImage = isShowRelatedOrgImage;
    }
    public boolean isShowCompareOrgImage() {
        return isShowCompareOrgImage;
    }
    public void setShowCompareOrgImage(boolean isShowCompareOrgImage) {
        this.isShowCompareOrgImage = isShowCompareOrgImage;
    }
    public boolean isShowWishlistOrgImage() {
        return isShowWishlistOrgImage;
    }
    public void setShowWishlistOrgImage(boolean isShowWishlistOrgImage) {
        this.isShowWishlistOrgImage = isShowWishlistOrgImage;
    }
    public boolean isShowCartOrgImage() {
        return isShowCartOrgImage;
    }
    public void setShowCartOrgImage(boolean isShowCartOrgImage) {
        this.isShowCartOrgImage = isShowCartOrgImage;
    }
    public boolean isShowLocationOrgImage() {
        return isShowLocationOrgImage;
    }
    public void setShowLocationOrgImage(boolean isShowLocationOrgImage) {
        this.isShowLocationOrgImage = isShowLocationOrgImage;
    }
    public boolean isShowBannerOrgImage() {
        return isShowBannerOrgImage;
    }
    public void setShowBannerOrgImage(boolean isShowBannerOrgImage) {
        this.isShowBannerOrgImage = isShowBannerOrgImage;
    }
    public boolean isShowManufacturerOrgImage() {
        return isShowManufacturerOrgImage;
    }
    public void setShowManufacturerOrgImage(boolean isShowManufacturerOrgImage) {
        this.isShowManufacturerOrgImage = isShowManufacturerOrgImage;
    }
    //订单配置
    private Boolean CouponStatus = false ;  //启用优惠券?
    private Integer CouponSortOrder = null ;  //优惠券排序
    private Boolean HandlingStatus = false ;   //启用手续费?
    private Double HandlingTotal = null ;   //订单总额  (小于 订单总额 才收手续费)
    private Double HandlingFee = null ;   //收费  (单位:元)
    private Integer HandlingSortOrder = null ;   //手续费排序
    private Boolean LowOrderFeeStatus = false ;  //启用小额订单收费
    private Double LowOrderFeeTotal = null ;   //小额订单总计
    private Double LowOrderFeeFee = null ;   //收费 (单位:元)
    private Integer LowOrderFeeSortOrder = null ;  //小额订单排序
    private Boolean RewardStatus = false ;   //启用奖励积分?
    private Integer RewardSortOrder = null ;  //奖励积分排序
    private Boolean ShippingEstimator = false ;  //启用货运预估?
    private Boolean ShippingStatus = false ;   //启用配送?
    private Integer ShippingSortOrder = null ;  //配送排序
    
    private Boolean VoucherStatus = false ;   //启用礼品券
    private Integer VoucherSortOrder = null ;  //礼品券排序
    
    private boolean isShowPrice = false ; //是否显示价格
    private boolean isSyncWxCpUser = false ;  //新客户同步企业号
    private String ccCode = null ;  //新客户所在部门
    
    private String wxCpQRCode = null ;  //企业号二维码图片
    private String wxMpQRCode = null ; //公众号二维码图片
    private Integer cssCaptionHeight = 180 ;  //商品缩略描述框高度(空白时缺省值为:180)
    private boolean isShowDistributor = false ; //是否启用分销模式
    private boolean isDiscardDistributor = false ; //取消关注时是否断开分销模式层级关系
    private Integer preSendDays = 0 ;  //交货日期缺省天数 
        
    //新用户注册
    private Integer countryId = null ;  //国家ID
    private boolean isShowCountryId = false ; //显示国家ID输入框
    private boolean isRequiredCountryId = false ; 
    private Integer provinceZoneId = null ;  //省级地区
    private boolean isShowProvinceZoneId = false ;  //显示省级地区输入框
    private boolean isRequiredProvinceZoneId = false ; 
    private Integer cityZoneId = null ; //市级地区
    private boolean isShowCityZoneId = false ;   //显示市级地区输入框
    private boolean isRequiredCityZoneId = false ; 
    private Integer CountyZoneId = null ; //区镇
    private boolean isShowCountyZoneId = false ;  //显示区镇输入框
    private boolean isRequiredCountyZoneId = false ; 
    private String cltType = null ; //缺省客户分类
    private boolean isShowCltType = false ;   //显示客户分类输入框
    private boolean isRequiredCltType = false;
    private String referralsType = null ; //缺省推荐人所属
    private boolean isShowReferralsCode = false ; //显示推荐人输入框
    private boolean isRequiredReferralsCode = false;
 
    private String defaultMemberLevel = null ; //新客户会员级别
    private boolean isShowTel = false ;  //显示电话号码
    private boolean isRequiredTel = false ;
    private boolean isShowFax = false ; //显示传真号码
    private boolean isRequiredFax= false ;
 
    private boolean isShowEmail = false ;   //显示邮件输入框
    private boolean isRequiredEmail = false ;
    private boolean isShowSourceInfo = false ; //显示来源输入框
    private boolean isRequiredSourceInfo = false;
    private boolean isShowPassword = false ;   //显示密码输入框
    private boolean isRequiredPassword = false ;
    private boolean isShowOrganization = false ;  //显示公司名称框
    private boolean isRequiredOrganization = false ;
    private boolean isShowAddress = false ;  //显示地址输入框
    private boolean isRequiredAddress = false ;
    private boolean isShowPostcode = false ;  //显示邮编输入框
    private boolean isRequiredPropertyId = false ;
    private boolean isShowPropertyId = false ;  //显示小区输入框
    private boolean isRequiredPostcode = false ;
    
    private boolean isShowImageAdditional = false ; //浏览产品时是否显示附加图片
    private boolean isFromCached = false ;  //是否启用图片缓存技术
    
    
    public String getDefaultMemberLevel() {
        return defaultMemberLevel;
    }
    public void setDefaultMemberLevel(String defaultMemberLevel) {
        this.defaultMemberLevel = defaultMemberLevel;
    }
    public String getReferralsType() {
        return referralsType;
    }
    public void setReferralsType(String referralsType) {
        this.referralsType = referralsType;
    }
    public boolean isShowReferralsCode() {
        return isShowReferralsCode;
    }
    public void setShowReferralsCode(boolean isShowReferralsCode) {
        this.isShowReferralsCode = isShowReferralsCode;
    }
    public boolean isRequiredReferralsCode() {
        return isRequiredReferralsCode;
    }
    public void setRequiredReferralsCode(boolean isRequiredReferralsCode) {
        this.isRequiredReferralsCode = isRequiredReferralsCode;
    }
    public boolean isFromCached() {
        return isFromCached;
    }
    public void setFromCached(boolean isFromCached) {
        this.isFromCached = isFromCached;
    }
    public boolean isShowImageAdditional() {
        return isShowImageAdditional;
    }
    public void setShowImageAdditional(boolean isShowImageAdditional) {
        this.isShowImageAdditional = isShowImageAdditional;
    }
    public boolean isDiscardDistributor() {
        return isDiscardDistributor;
    }
    public void setDiscardDistributor(boolean isDiscardDistributor) {
        this.isDiscardDistributor = isDiscardDistributor;
    }
    public boolean isRequiredCountryId() {
        return isRequiredCountryId;
    }
    public void setRequiredCountryId(boolean isRequiredCountryId) {
        this.isRequiredCountryId = isRequiredCountryId;
    }
    public boolean isRequiredProvinceZoneId() {
        return isRequiredProvinceZoneId;
    }
    public void setRequiredProvinceZoneId(boolean isRequiredProvinceZoneId) {
        this.isRequiredProvinceZoneId = isRequiredProvinceZoneId;
    }
    public boolean isRequiredCityZoneId() {
        return isRequiredCityZoneId;
    }
    public void setRequiredCityZoneId(boolean isRequiredCityZoneId) {
        this.isRequiredCityZoneId = isRequiredCityZoneId;
    }
    public boolean isRequiredCountyZoneId() {
        return isRequiredCountyZoneId;
    }
    public void setRequiredCountyZoneId(boolean isRequiredCountyZoneId) {
        this.isRequiredCountyZoneId = isRequiredCountyZoneId;
    }
 
    public boolean isRequiredCltType() {
        return isRequiredCltType;
    }
    public void setRequiredCltType(boolean isRequiredCltType) {
        this.isRequiredCltType = isRequiredCltType;
    }
    public boolean isRequiredTel() {
        return isRequiredTel;
    }
    public void setRequiredTel(boolean isRequiredTel) {
        this.isRequiredTel = isRequiredTel;
    }
    public boolean isRequiredFax() {
        return isRequiredFax;
    }
    public void setRequiredFax(boolean isRequiredFax) {
        this.isRequiredFax = isRequiredFax;
    }
    public boolean isRequiredEmail() {
        return isRequiredEmail;
    }
    public void setRequiredEmail(boolean isRequiredEmail) {
        this.isRequiredEmail = isRequiredEmail;
    }
    public boolean isRequiredSourceInfo() {
        return isRequiredSourceInfo;
    }
    public void setRequiredSourceInfo(boolean isRequiredSourceInfo) {
        this.isRequiredSourceInfo = isRequiredSourceInfo;
    }
    public boolean isRequiredPassword() {
        return isRequiredPassword;
    }
    public void setRequiredPassword(boolean isRequiredPassword) {
        this.isRequiredPassword = isRequiredPassword;
    }
    public boolean isRequiredOrganization() {
        return isRequiredOrganization;
    }
    public void setRequiredOrganization(boolean isRequiredOrganization) {
        this.isRequiredOrganization = isRequiredOrganization;
    }
    public boolean isRequiredAddress() {
        return isRequiredAddress;
    }
    public void setRequiredAddress(boolean isRequiredAddress) {
        this.isRequiredAddress = isRequiredAddress;
    }
    public boolean isRequiredPropertyId() {
        return isRequiredPropertyId;
    }
    public void setRequiredPropertyId(boolean isRequiredPropertyId) {
        this.isRequiredPropertyId = isRequiredPropertyId;
    }
    public boolean isRequiredPostcode() {
        return isRequiredPostcode;
    }
    public void setRequiredPostcode(boolean isRequiredPostcode) {
        this.isRequiredPostcode = isRequiredPostcode;
    }
    public boolean isShowTel() {
        return isShowTel;
    }
    public void setShowTel(boolean isShowTel) {
        this.isShowTel = isShowTel;
    }
    public boolean isShowFax() {
        return isShowFax;
    }
    public void setShowFax(boolean isShowFax) {
        this.isShowFax = isShowFax;
    }
    public Integer getCountyZoneId() {
        return CountyZoneId;
    }
    public void setCountyZoneId(Integer countyZoneId) {
        CountyZoneId = countyZoneId;
    }
    public boolean isShowCountyZoneId() {
        return isShowCountyZoneId;
    }
    public void setShowCountyZoneId(boolean isShowCountyZoneId) {
        this.isShowCountyZoneId = isShowCountyZoneId;
    }
    public boolean isShowCountryId() {
        return isShowCountryId;
    }
    public void setShowCountryId(boolean isShowCountryId) {
        this.isShowCountryId = isShowCountryId;
    }
    public boolean isShowProvinceZoneId() {
        return isShowProvinceZoneId;
    }
    public void setShowProvinceZoneId(boolean isShowProvinceZoneId) {
        this.isShowProvinceZoneId = isShowProvinceZoneId;
    }
    public boolean isShowCityZoneId() {
        return isShowCityZoneId;
    }
    public void setShowCityZoneId(boolean isShowCityZoneId) {
        this.isShowCityZoneId = isShowCityZoneId;
    }
 
    public boolean isShowCltType() {
        return isShowCltType;
    }
    public void setShowCltType(boolean isShowCltType) {
        this.isShowCltType = isShowCltType;
    }
    public boolean isShowEmail() {
        return isShowEmail;
    }
    public void setShowEmail(boolean isShowEmail) {
        this.isShowEmail = isShowEmail;
    }
    public boolean isShowSourceInfo() {
        return isShowSourceInfo;
    }
    public void setShowSourceInfo(boolean isShowSourceInfo) {
        this.isShowSourceInfo = isShowSourceInfo;
    }
    public boolean isShowPassword() {
        return isShowPassword;
    }
    public void setShowPassword(boolean isShowPassword) {
        this.isShowPassword = isShowPassword;
    }
    public boolean isShowOrganization() {
        return isShowOrganization;
    }
    public void setShowOrganization(boolean isShowOrganization) {
        this.isShowOrganization = isShowOrganization;
    }
    public boolean isShowAddress() {
        return isShowAddress;
    }
    public void setShowAddress(boolean isShowAddress) {
        this.isShowAddress = isShowAddress;
    }
    public boolean isShowPostcode() {
        return isShowPostcode;
    }
    public void setShowPostcode(boolean isShowPostcode) {
        this.isShowPostcode = isShowPostcode;
    }
    public boolean isShowPropertyId() {
        return isShowPropertyId;
    }
    public void setShowPropertyId(boolean isShowPropertyId) {
        this.isShowPropertyId = isShowPropertyId;
    }
    public Integer getPreSendDays() {
        return preSendDays;
    }
    public void setPreSendDays(Integer preSendDays) {
        this.preSendDays = preSendDays;
    }
    public boolean isShowDistributor() {
        return isShowDistributor;
    }
    public void setShowDistributor(boolean isShowDistributor) {
        this.isShowDistributor = isShowDistributor;
    }
    public Integer getCssCaptionHeight() {
        return cssCaptionHeight;
    }
    public void setCssCaptionHeight(Integer cssCaptionHeight) {
        this.cssCaptionHeight = cssCaptionHeight;
    }
    public boolean isShowPrice() {
        return isShowPrice;
    }
    public void setShowPrice(boolean isShowPrice) {
        this.isShowPrice = isShowPrice;
    }
    public String getCcCode() {
        return ccCode;
    }
    public void setCcCode(String ccCode) {
        this.ccCode = ccCode;
    }
    public boolean isShowSalesCharts() {
        return isShowSalesCharts;
    }
    public void setShowSalesCharts(boolean isShowSalesCharts) {
        this.isShowSalesCharts = isShowSalesCharts;
    }
    public boolean isSyncWxCpUser() {
        return isSyncWxCpUser;
    }
    public void setSyncWxCpUser(boolean isSyncWxCpUser) {
        this.isSyncWxCpUser = isSyncWxCpUser;
    }
    public String getWxCpQRCode() {
        return wxCpQRCode;
    }
    public void setWxCpQRCode(String wxCpQRCode) {
        this.wxCpQRCode = wxCpQRCode;
    }
    public String getWxMpQRCode() {
        return wxMpQRCode;
    }
    public void setWxMpQRCode(String wxMpQRCode) {
        this.wxMpQRCode = wxMpQRCode;
    }
    public String getCltType() {
        return cltType;
    }
    public void setCltType(String cltType) {
        this.cltType = cltType;
    }
    public Integer getProvinceZoneId() {
        return provinceZoneId;
    }
    public void setProvinceZoneId(Integer provinceZoneId) {
        this.provinceZoneId = provinceZoneId;
    }
    public Integer getCityZoneId() {
        return cityZoneId;
    }
    public void setCityZoneId(Integer cityZoneId) {
        this.cityZoneId = cityZoneId;
    }
 
    public Integer getImageBrandWidth() {
        return imageBrandWidth;
    }
    public void setImageBrandWidth(Integer imageBrandWidth) {
        this.imageBrandWidth = imageBrandWidth;
    }
    public Integer getImageBrandHeight() {
        return imageBrandHeight;
    }
    public void setImageBrandHeight(Integer imageBrandHeight) {
        this.imageBrandHeight = imageBrandHeight;
    }
    public Integer getImageManufacturerWidth() {
        return imageManufacturerWidth;
    }
    public void setImageManufacturerWidth(Integer imageManufacturerWidth) {
        this.imageManufacturerWidth = imageManufacturerWidth;
    }
    public Integer getImageManufacturerHeight() {
        return imageManufacturerHeight;
    }
    public void setImageManufacturerHeight(Integer imageManufacturerHeight) {
        this.imageManufacturerHeight = imageManufacturerHeight;
    }
    public Integer getImageLogoWidth() {
        return imageLogoWidth;
    }
    public void setImageLogoWidth(Integer imageLogoWidth) {
        this.imageLogoWidth = imageLogoWidth;
    }
    public Integer getImageLogoHeight() {
        return imageLogoHeight;
    }
    public void setImageLogoHeight(Integer imageLogoHeight) {
        this.imageLogoHeight = imageLogoHeight;
    }
    public Integer getImageBannerWidth() {
        return imageBannerWidth;
    }
    public void setImageBannerWidth(Integer imageBannerWidth) {
        this.imageBannerWidth = imageBannerWidth;
    }
    public Integer getImageBannerHeight() {
        return imageBannerHeight;
    }
    public void setImageBannerHeight(Integer imageBannerHeight) {
        this.imageBannerHeight = imageBannerHeight;
    }
    public String getMetaTitle() {
        return metaTitle;
    }
    public void setMetaTitle(String metaTitle) {
        this.metaTitle = metaTitle;
    }
    public String getMetaDescription() {
        return metaDescription;
    }
    public void setMetaDescription(String metaDescription) {
        this.metaDescription = metaDescription;
    }
    public String getMetaKeyword() {
        return metaKeyword;
    }
    public void setMetaKeyword(String metaKeyword) {
        this.metaKeyword = metaKeyword;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getOwner() {
        return owner;
    }
    public void setOwner(String owner) {
        this.owner = owner;
    }
    public String getAddress() {
        return address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
    public String getGeoCode() {
        return geoCode;
    }
    public void setGeoCode(String geoCode) {
        this.geoCode = geoCode;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public String getTelephone() {
        return telephone;
    }
    public void setTelephone(String telephone) {
        this.telephone = telephone;
    }
    public String getFax() {
        return fax;
    }
    public void setFax(String fax) {
        this.fax = fax;
    }
    public String getImage() {
        return image;
    }
    public void setImage(String image) {
        this.image = image;
    }
    public String getOpenDate() {
        return openDate;
    }
    public void setOpenDate(String openDate) {
        this.openDate = openDate;
    }
    public String getComment() {
        return comment;
    }
    public void setComment(String comment) {
        this.comment = comment;
    }
    public Integer getCountryId() {
        return countryId;
    }
    public void setCountryId(Integer countryId) {
        this.countryId = countryId;
    }
    public String getCurrency() {
        return currency;
    }
    public void setCurrency(String currency) {
        this.currency = currency;
    }
    public Boolean getCurrencyAuto() {
        return currencyAuto;
    }
    public void setCurrencyAuto(Boolean currencyAuto) {
        this.currencyAuto = currencyAuto;
    }
    public String getLengthClassId() {
        return lengthClassId;
    }
    public void setLengthClassId(String lengthClassId) {
        this.lengthClassId = lengthClassId;
    }
    public String getWeightClassId() {
        return weightClassId;
    }
    public void setWeightClassId(String weightClassId) {
        this.weightClassId = weightClassId;
    }
    public Integer getLangId() {
        return langId;
    }
    public void setLangId(Integer langId) {
        this.langId = langId;
    }
    public Boolean getProductCount() {
        return productCount;
    }
    public void setProductCount(Boolean productCount) {
        this.productCount = productCount;
    }
    public Integer getProductLimit() {
        return productLimit;
    }
    public void setProductLimit(Integer productLimit) {
        this.productLimit = productLimit;
    }
    public Integer getProductDescriptionLength() {
        return productDescriptionLength;
    }
    public void setProductDescriptionLength(Integer productDescriptionLength) {
        this.productDescriptionLength = productDescriptionLength;
    }
    public Boolean getReviewStatus() {
        return reviewStatus;
    }
    public void setReviewStatus(Boolean reviewStatus) {
        this.reviewStatus = reviewStatus;
    }
    public Boolean getReviewGuest() {
        return reviewGuest;
    }
    public void setReviewGuest(Boolean reviewGuest) {
        this.reviewGuest = reviewGuest;
    }
    public Boolean getReviewMail() {
        return reviewMail;
    }
    public void setReviewMail(Boolean reviewMail) {
        this.reviewMail = reviewMail;
    }
    public Integer getVoucherMin() {
        return voucherMin;
    }
    public void setVoucherMin(Integer voucherMin) {
        this.voucherMin = voucherMin;
    }
    public Integer getVoucherMax() {
        return voucherMax;
    }
    public void setVoucherMax(Integer voucherMax) {
        this.voucherMax = voucherMax;
    }
    public Boolean getTax() {
        return tax;
    }
    public void setTax(Boolean tax) {
        this.tax = tax;
    }
    public String getTaxDefault() {
        return taxDefault;
    }
    public void setTaxDefault(String taxDefault) {
        this.taxDefault = taxDefault;
    }
    public String getTaxCustomer() {
        return taxCustomer;
    }
    public void setTaxCustomer(String taxCustomer) {
        this.taxCustomer = taxCustomer;
    }
    public String getAccountId() {
        return accountId;
    }
    public void setAccountId(String accountId) {
        this.accountId = accountId;
    }
    public Boolean getCartWeight() {
        return cartWeight;
    }
    public void setCartWeight(Boolean cartWeight) {
        this.cartWeight = cartWeight;
    }
    public String getCheckoutId() {
        return checkoutId;
    }
    public void setCheckoutId(String checkoutId) {
        this.checkoutId = checkoutId;
    }
    public String getOrderStatusId() {
        return orderStatusId;
    }
    public void setOrderStatusId(String orderStatusId) {
        this.orderStatusId = orderStatusId;
    }
    public Boolean getStockDisplay() {
        return stockDisplay;
    }
    public void setStockDisplay(Boolean stockDisplay) {
        this.stockDisplay = stockDisplay;
    }
    public Boolean getStockWarning() {
        return stockWarning;
    }
    public void setStockWarning(Boolean stockWarning) {
        this.stockWarning = stockWarning;
    }
    public Boolean getStockCheckout() {
        return stockCheckout;
    }
    public void setStockCheckout(Boolean stockCheckout) {
        this.stockCheckout = stockCheckout;
    }
    public String getLogo() {
        return logo;
    }
    public void setLogo(String logo) {
        this.logo = logo;
    }
    public String getIcon() {
        return icon;
    }
    public void setIcon(String icon) {
        this.icon = icon;
    }
    public Integer getImageCategoryWidth() {
        return imageCategoryWidth;
    }
    public void setImageCategoryWidth(Integer imageCategoryWidth) {
        this.imageCategoryWidth = imageCategoryWidth;
    }
    public Integer getImageCategoryHeight() {
        return imageCategoryHeight;
    }
    public void setImageCategoryHeight(Integer imageCategoryHeight) {
        this.imageCategoryHeight = imageCategoryHeight;
    }
    public Integer getImageThumbWidth() {
        return imageThumbWidth;
    }
    public void setImageThumbWidth(Integer imageThumbWidth) {
        this.imageThumbWidth = imageThumbWidth;
    }
    public Integer getImageThumbHeight() {
        return imageThumbHeight;
    }
    public void setImageThumbHeight(Integer imageThumbHeight) {
        this.imageThumbHeight = imageThumbHeight;
    }
    public Integer getImagePopupWidth() {
        return imagePopupWidth;
    }
    public void setImagePopupWidth(Integer imagePopupWidth) {
        this.imagePopupWidth = imagePopupWidth;
    }
    public Integer getImagePopupHeight() {
        return imagePopupHeight;
    }
    public void setImagePopupHeight(Integer imagePopupHeight) {
        this.imagePopupHeight = imagePopupHeight;
    }
    public Integer getImageProductWidth() {
        return imageProductWidth;
    }
    public void setImageProductWidth(Integer imageProductWidth) {
        this.imageProductWidth = imageProductWidth;
    }
    public Integer getImageProductHeight() {
        return imageProductHeight;
    }
    public void setImageProductHeight(Integer imageProductHeight) {
        this.imageProductHeight = imageProductHeight;
    }
    public Integer getImageAdditionalWidth() {
        return imageAdditionalWidth;
    }
    public void setImageAdditionalWidth(Integer imageAdditionalWidth) {
        this.imageAdditionalWidth = imageAdditionalWidth;
    }
    public Integer getImageAdditionalHeight() {
        return imageAdditionalHeight;
    }
    public void setImageAdditionalHeight(Integer imageAdditionalHeight) {
        this.imageAdditionalHeight = imageAdditionalHeight;
    }
    public Integer getImageRelatedWidth() {
        return imageRelatedWidth;
    }
    public void setImageRelatedWidth(Integer imageRelatedWidth) {
        this.imageRelatedWidth = imageRelatedWidth;
    }
    public Integer getImageRelatedHeight() {
        return imageRelatedHeight;
    }
    public void setImageRelatedHeight(Integer imageRelatedHeight) {
        this.imageRelatedHeight = imageRelatedHeight;
    }
    public Integer getImageCompareWidth() {
        return imageCompareWidth;
    }
    public void setImageCompareWidth(Integer imageCompareWidth) {
        this.imageCompareWidth = imageCompareWidth;
    }
    public Integer getImageCompareHeight() {
        return imageCompareHeight;
    }
    public void setImageCompareHeight(Integer imageCompareHeight) {
        this.imageCompareHeight = imageCompareHeight;
    }
    public Integer getImageWishlistWidth() {
        return imageWishlistWidth;
    }
    public void setImageWishlistWidth(Integer imageWishlistWidth) {
        this.imageWishlistWidth = imageWishlistWidth;
    }
    public Integer getImageWishlistHeight() {
        return imageWishlistHeight;
    }
    public void setImageWishlistHeight(Integer imageWishlistHeight) {
        this.imageWishlistHeight = imageWishlistHeight;
    }
    public Integer getImageCartWidth() {
        return imageCartWidth;
    }
    public void setImageCartWidth(Integer imageCartWidth) {
        this.imageCartWidth = imageCartWidth;
    }
    public Integer getImageCartHeight() {
        return imageCartHeight;
    }
    public void setImageCartHeight(Integer imageCartHeight) {
        this.imageCartHeight = imageCartHeight;
    }
    public Integer getImageLocationWidth() {
        return imageLocationWidth;
    }
    public void setImageLocationWidth(Integer imageLocationWidth) {
        this.imageLocationWidth = imageLocationWidth;
    }
    public Integer getImageLocationHeight() {
        return imageLocationHeight;
    }
    public void setImageLocationHeight(Integer imageLocationHeight) {
        this.imageLocationHeight = imageLocationHeight;
    }
    public Boolean getMaintenance() {
        return maintenance;
    }
    public void setMaintenance(Boolean maintenance) {
        this.maintenance = maintenance;
    }
    public Boolean getCouponStatus() {
        return CouponStatus;
    }
    public void setCouponStatus(Boolean couponStatus) {
        CouponStatus = couponStatus;
    }
    public Integer getCouponSortOrder() {
        return CouponSortOrder;
    }
    public void setCouponSortOrder(Integer couponSortOrder) {
        CouponSortOrder = couponSortOrder;
    }
    public Boolean getHandlingStatus() {
        return HandlingStatus;
    }
    public void setHandlingStatus(Boolean handlingStatus) {
        HandlingStatus = handlingStatus;
    }
    public Double getHandlingTotal() {
        return HandlingTotal;
    }
    public void setHandlingTotal(Double handlingTotal) {
        HandlingTotal = handlingTotal;
    }
    public Double getHandlingFee() {
        return HandlingFee;
    }
    public void setHandlingFee(Double handlingFee) {
        HandlingFee = handlingFee;
    }
    public Integer getHandlingSortOrder() {
        return HandlingSortOrder;
    }
    public void setHandlingSortOrder(Integer handlingSortOrder) {
        HandlingSortOrder = handlingSortOrder;
    }
    public Boolean getLowOrderFeeStatus() {
        return LowOrderFeeStatus;
    }
    public void setLowOrderFeeStatus(Boolean lowOrderFeeStatus) {
        LowOrderFeeStatus = lowOrderFeeStatus;
    }
    public Double getLowOrderFeeTotal() {
        return LowOrderFeeTotal;
    }
    public void setLowOrderFeeTotal(Double lowOrderFeeTotal) {
        LowOrderFeeTotal = lowOrderFeeTotal;
    }
    public Double getLowOrderFeeFee() {
        return LowOrderFeeFee;
    }
    public void setLowOrderFeeFee(Double lowOrderFeeFee) {
        LowOrderFeeFee = lowOrderFeeFee;
    }
    public Integer getLowOrderFeeSortOrder() {
        return LowOrderFeeSortOrder;
    }
    public void setLowOrderFeeSortOrder(Integer lowOrderFeeSortOrder) {
        LowOrderFeeSortOrder = lowOrderFeeSortOrder;
    }
    public Boolean getRewardStatus() {
        return RewardStatus;
    }
    public void setRewardStatus(Boolean rewardStatus) {
        RewardStatus = rewardStatus;
    }
    public Integer getRewardSortOrder() {
        return RewardSortOrder;
    }
    public void setRewardSortOrder(Integer rewardSortOrder) {
        RewardSortOrder = rewardSortOrder;
    }
    public Boolean getShippingEstimator() {
        return ShippingEstimator;
    }
    public void setShippingEstimator(Boolean shippingEstimator) {
        ShippingEstimator = shippingEstimator;
    }
    public Boolean getShippingStatus() {
        return ShippingStatus;
    }
    public void setShippingStatus(Boolean shippingStatus) {
        ShippingStatus = shippingStatus;
    }
    public Integer getShippingSortOrder() {
        return ShippingSortOrder;
    }
    public void setShippingSortOrder(Integer shippingSortOrder) {
        ShippingSortOrder = shippingSortOrder;
    }
 
    public Boolean getVoucherStatus() {
        return VoucherStatus;
    }
    public void setVoucherStatus(Boolean voucherStatus) {
        VoucherStatus = voucherStatus;
    }
    public Integer getVoucherSortOrder() {
        return VoucherSortOrder;
    }
    public void setVoucherSortOrder(Integer voucherSortOrder) {
        VoucherSortOrder = voucherSortOrder;
    }
 
 
    
    
}