-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
30 lines (30 loc) · 827 Bytes
/
config.py
File metadata and controls
30 lines (30 loc) · 827 Bytes
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
config={
"db":{
"host":"127.0.0.1",
"port":"1433",
"database":"TeldPay",
"username":"sa",
"password":"123456"
},
"project":{
"companycode":"Teld",
"appcode":"BIZ",
"appchinesename":"业务公共",
"modulecode":"CASC",
"modulechinesename":"清结算中心",
"functioncode":"Clearing",
"functionchinesename":"清分"
},
"domainmodel":{
"domainname":"ClearingOrder",
"domainchinesename":"清分订单",
"tablename":"CASP_ClearingOrder",
"orderby":["BCode DESC"],
"foreignkeyrelations":{
"PlatformMerchantID":"CASP_PlatformMerchant.ID"
},
"modelpropertyrelations":{
"PlatformMerchantName":"CASP_PlatformMerchant.Name"
}
}
}