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
| {
| "base_sys_param": [
| {
| "keyName": "orderTimeout",
| "name": "订单超时时间",
| "data": "120",
| "dataType": 0,
| "remark": "订单超时未支付,自动关闭。单位:分钟"
| },
| {
| "keyName": "orderConfirm",
| "name": "自动确认收货",
| "data": "15",
| "dataType": 0,
| "remark": "自动确认收货时间,从支付成功起算,单位:天"
| },
| {
| "keyName": "carbonratio",
| "name": "碳积分兑换比例",
| "data": "100",
| "dataType": 0,
| "remark": "商城碳积分支付:所需积分 = 订单金额 * carbonratio,默认 100"
| },
| {
| "keyName": "hitup.score",
| "name": "打卡碳积分",
| "data": "1",
| "dataType": 0,
| "remark": "分拣员给学生/老师打卡时,每次增加的碳积分"
| },
| {
| "keyName": "hitup.maxmium.perday",
| "name": "打卡每日上限",
| "data": "1",
| "dataType": 0,
| "remark": "同一用户同一天最多打卡次数,超过则提示异常"
| },
| {
| "keyName": "userAgreement",
| "name": "用户协议",
| "data": "<h3 style=\"text-align: center;\"><strong>用户协议</strong></h3><p><br></p><p>xxxxxx</p>",
| "dataType": 1,
| "remark": null
| },
| {
| "keyName": "privacyPolicy",
| "name": "隐私政策",
| "data": "<h3 style=\"text-align: center;\"><strong>隐私政策</strong></h3><p><br></p><p>xxxxxx</p>",
| "dataType": 1,
| "remark": null
| }
| ],
| "base_sys_conf": [
| {
| "cKey": "logKeep",
| "cValue": "31"
| },
| {
| "cKey": "recycleKeep",
| "cValue": "31"
| }
| ],
| "base_sys_department": [
| {
| "id": 1,
| "name": "COOL",
| "parentId": null,
| "orderNum": 0
| },
| {
| "id": 11,
| "name": "开发",
| "parentId": 12,
| "orderNum": 2
| },
| {
| "id": 12,
| "name": "测试",
| "parentId": 1,
| "orderNum": 1
| },
| {
| "id": 13,
| "name": "游客",
| "parentId": 1,
| "orderNum": 3
| }
| ],
| "base_sys_role": [
| {
| "id": 1,
| "userId": "1",
| "name": "超管",
| "label": "admin",
| "remark": "最高权限的角色",
| "relevance": 1,
| "menuIdList": "null",
| "departmentIdList": "null"
| }
| ],
| "base_sys_user": [
| {
| "id": 1,
| "departmentId": 1,
| "name": "超级管理员",
| "username": "admin",
| "password": "e10adc3949ba59abbe56e057f20f883e",
| "passwordV": 7,
| "nickName": "管理员",
| "headImg": "https://cool-js.com/admin/headimg.jpg",
| "phone": "18000000000",
| "email": "team@cool-js.com",
| "status": 1,
| "remark": "拥有最高权限的用户",
| "socketId": null
| }
| ],
| "base_sys_user_role": [
| {
| "userId": 1,
| "roleId": 1
| }
| ]
| }
|
|