Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
4be6526d
Commit
4be6526d
authored
Jun 29, 2020
by
zhaoxiqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
60392743
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
334 additions
and
36 deletions
+334
-36
esign-sve-merchant/app/base/api/impl/op/action.js
+3
-1
esign-sve-merchant/app/base/db/impl/merchant/merchantaccountDao.js
+17
-4
esign-sve-merchant/app/base/db/impl/merchant/merchantapiDao.js
+12
-0
esign-sve-merchant/app/base/db/impl/merchant/merchanttradeDao.js
+6
-4
esign-sve-merchant/app/base/db/models/merchant/merchant.js
+35
-5
esign-sve-merchant/app/base/db/models/merchant/merchantaccount.js
+35
-5
esign-sve-merchant/app/base/db/models/merchant/merchantapi.js
+46
-0
esign-sve-merchant/app/base/db/models/merchant/merchanttrade.js
+35
-5
esign-sve-merchant/app/base/service/impl/merchant/merchantSve.js
+15
-9
esign-sve-merchant/app/base/service/impl/merchant/merchantaccountSve.js
+8
-0
esign-sve-merchant/app/base/service/impl/merchant/merchantapiSve.js
+11
-0
esign-sve-merchant/app/base/service/impl/merchant/merchanttradeSve.js
+109
-1
esign-sve-merchant/app/config/localsettings.js
+2
-2
No files found.
esign-sve-merchant/app/base/api/impl/op/action.js
View file @
4be6526d
...
@@ -101,7 +101,9 @@ class ActionAPI extends APIBase {
...
@@ -101,7 +101,9 @@ class ActionAPI extends APIBase {
break
;
break
;
//资金流水
//资金流水
case
"merchanttradesOfListAll"
:
opResult
=
await
this
.
merchanttradeSve
.
merchanttradesOfListAll
(
action_body
);
break
;
default
:
default
:
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
break
;
break
;
...
...
esign-sve-merchant/app/base/db/impl/merchant/merchantaccountDao.js
View file @
4be6526d
const
Dao
=
require
(
"../../dao.base"
);
const
Dao
=
require
(
"../../dao.base"
);
class
MerchantaccountDao
extends
Dao
{
constructor
(){
class
MerchantaccountDao
extends
Dao
{
constructor
()
{
super
(
Dao
.
getModelName
(
MerchantaccountDao
));
super
(
Dao
.
getModelName
(
MerchantaccountDao
));
}
}
async
addtomerchantrmb
(
params
){
var
sql
=
[];
sql
.
push
(
"UPDATE"
);
sql
.
push
(
this
.
model
.
tableName
);
sql
.
push
(
"SET balance_amount = balance_amount+ : amount"
);
sql
.
push
(
"AND available_amount = available_amount + :available_amount"
);
sql
.
push
(
"WHERE merchant_id = :merchant_id"
)
return
await
this
.
customQuery
(
sql
.
join
(
" "
),
params
);
}
}
}
module
.
exports
=
MerchantaccountDao
;
module
.
exports
=
MerchantaccountDao
;
esign-sve-merchant/app/base/db/impl/merchant/merchantapiDao.js
0 → 100644
View file @
4be6526d
const
system
=
require
(
"../../../system"
);
const
Dao
=
require
(
"../../dao.base"
);
class
MerchantapiDao
extends
Dao
{
constructor
()
{
super
(
Dao
.
getModelName
(
MerchantapiDao
));
}
}
module
.
exports
=
MerchantapiDao
;
esign-sve-merchant/app/base/db/impl/merchant/merchanttradeDao.js
View file @
4be6526d
const
Dao
=
require
(
"../../dao.base"
);
const
Dao
=
require
(
"../../dao.base"
);
class
merchanttradeDao
extends
Dao
{
constructor
(){
class
merchanttradeDao
extends
Dao
{
constructor
()
{
super
(
Dao
.
getModelName
(
merchanttradeDao
));
super
(
Dao
.
getModelName
(
merchanttradeDao
));
}
}
}
}
module
.
exports
=
merchanttradeDao
;
module
.
exports
=
merchanttradeDao
;
esign-sve-merchant/app/base/db/models/merchant/merchant.js
View file @
4be6526d
...
@@ -20,15 +20,45 @@ module.exports = (db, DataTypes) => {
...
@@ -20,15 +20,45 @@ module.exports = (db, DataTypes) => {
audit_remark
:
DataTypes
.
STRING
,
audit_remark
:
DataTypes
.
STRING
,
audit_user_id
:
DataTypes
.
STRING
,
audit_user_id
:
DataTypes
.
STRING
,
},
{
},{
paranoid
:
false
,
//假的删除
paranoid
:
true
,
//假的删除
underscored
:
true
,
underscored
:
true
,
version
:
true
,
version
:
true
,
freezeTableName
:
true
,
freezeTableName
:
true
,
timestamps
:
true
,
//freezeTableName
: true,
updatedAt
:
false
,
// define the table's name
tableName
:
'e_merchant'
,
tableName
:
'e_merchant'
,
validate
:
{},
validate
:
{},
indexes
:
[]
indexes
:
[
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
],
});
});
}
}
esign-sve-merchant/app/base/db/models/merchant/merchantaccount.js
View file @
4be6526d
...
@@ -3,15 +3,45 @@ module.exports = (db, DataTypes) => {
...
@@ -3,15 +3,45 @@ module.exports = (db, DataTypes) => {
merchant_id
:
DataTypes
.
STRING
,
merchant_id
:
DataTypes
.
STRING
,
balance_amount
:
DataTypes
.
BIGINT
,
balance_amount
:
DataTypes
.
BIGINT
,
available_amount
:
DataTypes
.
BIGINT
,
available_amount
:
DataTypes
.
BIGINT
,
},
{
},{
paranoid
:
false
,
//假的删除
paranoid
:
true
,
//假的删除
underscored
:
true
,
underscored
:
true
,
version
:
true
,
version
:
true
,
freezeTableName
:
true
,
freezeTableName
:
true
,
timestamps
:
true
,
//freezeTableName
: true,
updatedAt
:
false
,
// define the table's name
tableName
:
'e_merchant_account'
,
tableName
:
'e_merchant_account'
,
validate
:
{},
validate
:
{},
indexes
:
[]
indexes
:
[
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
],
});
});
}
}
esign-sve-merchant/app/base/db/models/merchant/merchantapi.js
0 → 100644
View file @
4be6526d
module
.
exports
=
(
db
,
DataTypes
)
=>
{
return
db
.
define
(
"merchantapi"
,
{
secret
:
DataTypes
.
STRING
,
ip
:
DataTypes
.
TINYINT
,
},{
paranoid
:
true
,
//假的删除
underscored
:
true
,
version
:
true
,
freezeTableName
:
true
,
//freezeTableName: true,
// define the table's name
tableName
:
'e_merchant_api'
,
validate
:
{},
indexes
:
[
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
],
});
}
esign-sve-merchant/app/base/db/models/merchant/merchanttrade.js
View file @
4be6526d
...
@@ -13,15 +13,45 @@ module.exports = (db, DataTypes) => {
...
@@ -13,15 +13,45 @@ module.exports = (db, DataTypes) => {
audit_user_id
:
DataTypes
.
STRING
,
audit_user_id
:
DataTypes
.
STRING
,
balance_amount
:
DataTypes
.
BIGINT
,
balance_amount
:
DataTypes
.
BIGINT
,
available_amount
:
DataTypes
.
BIGINT
,
available_amount
:
DataTypes
.
BIGINT
,
},
{
},{
paranoid
:
false
,
//假的删除
paranoid
:
true
,
//假的删除
underscored
:
true
,
underscored
:
true
,
version
:
true
,
version
:
true
,
freezeTableName
:
true
,
freezeTableName
:
true
,
timestamps
:
true
,
//freezeTableName
: true,
updatedAt
:
false
,
// define the table's name
tableName
:
'e_merchant_trade'
,
tableName
:
'e_merchant_trade'
,
validate
:
{},
validate
:
{},
indexes
:
[]
indexes
:
[
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
],
});
});
}
}
esign-sve-merchant/app/base/service/impl/merchant/merchantSve.js
View file @
4be6526d
const
ServiceBase
=
require
(
"../../sve.base"
);
const
ServiceBase
=
require
(
"../../sve.base"
);
const
system
=
require
(
"../../../system"
);
class
MerchantService
extends
ServiceBase
{
class
MerchantService
extends
ServiceBase
{
constructor
()
{
constructor
()
{
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchantService
));
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchantService
));
this
.
redisClient
=
system
.
getObject
(
"util.redisClient"
);
this
.
merchantapiSve
=
system
.
getObject
(
"service.merchant.merchantapiSve"
);
}
}
async
addModifyMerchants
(
params
)
{
async
addModifyMerchants
(
params
)
{
try
{
try
{
if
(
!
params
.
name
)
{
if
(
!
params
.
name
)
{
...
@@ -53,16 +56,19 @@ class MerchantService extends ServiceBase {
...
@@ -53,16 +56,19 @@ class MerchantService extends ServiceBase {
if
(
!
params
.
bd_email
)
{
if
(
!
params
.
bd_email
)
{
return
system
.
getResultFail
(
-
1
,
"请提供客户经理Email"
);
return
system
.
getResultFail
(
-
1
,
"请提供客户经理Email"
);
}
}
var
id
=
await
this
.
redisClient
.
genrateId
(
"e_merchant"
);
var
merchant
=
null
;
var
merchant
=
null
;
if
(
params
.
id
)
{
if
(
params
.
id
)
{
merchant
=
await
this
.
service
.
findById
(
params
.
id
);
merchant
=
await
this
.
dao
.
findById
(
params
.
id
);
}
}
var
rtn
=
null
;
var
rtn
=
null
;
if
(
merchant
)
{
if
(
merchant
)
{
rtn
=
await
this
.
service
.
update
(
params
)
rtn
=
await
this
.
dao
.
update
(
params
)
}
else
{
}
else
{
rtn
=
await
this
.
service
.
create
(
params
);
params
.
id
=
id
;
rtn
=
await
this
.
dao
.
create
(
params
);
var
secret
=
await
this
.
getUidInfo
(
32
);
this
.
merchantapiSve
.
create
({
id
:
id
,
secret
:
secret
});
}
}
return
system
.
getResultSuccess
(
rtn
);
return
system
.
getResultSuccess
(
rtn
);
}
catch
(
e
)
{
}
catch
(
e
)
{
...
@@ -80,10 +86,10 @@ class MerchantService extends ServiceBase {
...
@@ -80,10 +86,10 @@ class MerchantService extends ServiceBase {
var
where
=
{};
var
where
=
{};
if
(
params
.
name
)
{
if
(
params
.
name
)
{
where
.
name
=
{
where
.
name
=
{
[
this
.
db
.
Op
.
like
]:
params
.
name
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
name
+
"%"
};
};
}
}
this
.
addWhereTime
(
where
,
'c
omple
ted_at'
,
params
.
beginTime
,
params
.
entTime
,
true
);
this
.
addWhereTime
(
where
,
'c
rea
ted_at'
,
params
.
beginTime
,
params
.
entTime
,
true
);
var
orderby
=
[[
"id"
,
'desc'
]];
var
orderby
=
[[
"id"
,
'desc'
]];
var
attributes
=
[
`id`
,
`name`
,
`credit_code`
,
`contact_man`
,
`contact_mobile`
,
`contact_email`
,
`account_name`
,
`audit_status`
];
var
attributes
=
[
`id`
,
`name`
,
`credit_code`
,
`contact_man`
,
`contact_mobile`
,
`contact_email`
,
`account_name`
,
`audit_status`
];
var
page
=
await
this
.
getPageList
(
currentPage
,
pageSize
,
where
,
orderby
,
attributes
);
var
page
=
await
this
.
getPageList
(
currentPage
,
pageSize
,
where
,
orderby
,
attributes
);
...
@@ -111,7 +117,7 @@ class MerchantService extends ServiceBase {
...
@@ -111,7 +117,7 @@ class MerchantService extends ServiceBase {
return
system
.
getResultFail
(
-
1
,
"请输入失败原因"
);
return
system
.
getResultFail
(
-
1
,
"请输入失败原因"
);
}
}
var
rtn
=
await
this
.
service
.
update
(
params
);
var
rtn
=
await
this
.
dao
.
update
(
params
);
return
system
.
getResultSuccess
(
rtn
);
return
system
.
getResultSuccess
(
rtn
);
}
catch
(
e
)
{
}
catch
(
e
)
{
...
@@ -122,7 +128,7 @@ class MerchantService extends ServiceBase {
...
@@ -122,7 +128,7 @@ class MerchantService extends ServiceBase {
async
merchantSuggest
(
params
)
{
async
merchantSuggest
(
params
)
{
try
{
try
{
return
await
this
.
dao
.
suggest
(
name
);
return
await
this
.
dao
.
suggest
(
params
.
name
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
e
);
console
.
log
(
e
);
return
system
.
getResultFail
();
return
system
.
getResultFail
();
...
...
esign-sve-merchant/app/base/service/impl/merchant/merchantaccountSve.js
View file @
4be6526d
...
@@ -5,6 +5,14 @@ class MerchantaccountService extends ServiceBase {
...
@@ -5,6 +5,14 @@ class MerchantaccountService extends ServiceBase {
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchantaccountService
));
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchantaccountService
));
}
}
async
addtomerchantrmb
(
merchant_id
,
amount
){
var
params
=
{
merchant_id
:
merchant_id
,
amount
:
amount
}
return
this
.
dao
.
addtomerchantrmb
(
params
)
}
}
}
module
.
exports
=
MerchantaccountService
;
module
.
exports
=
MerchantaccountService
;
esign-sve-merchant/app/base/service/impl/merchant/merchantapiSve.js
0 → 100644
View file @
4be6526d
const
ServiceBase
=
require
(
"../../sve.base"
);
class
merchantapiService
extends
ServiceBase
{
constructor
()
{
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
merchantapiService
));
}
}
module
.
exports
=
merchantapiService
;
esign-sve-merchant/app/base/service/impl/merchant/merchanttradeSve.js
View file @
4be6526d
const
ServiceBase
=
require
(
"../../sve.base"
);
const
ServiceBase
=
require
(
"../../sve.base"
);
const
system
=
require
(
"../../../system"
);
const
moment
=
require
(
'moment'
);
class
MerchanttradeService
extends
ServiceBase
{
class
MerchanttradeService
extends
ServiceBase
{
constructor
()
{
constructor
()
{
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchanttradeService
));
super
(
"merchant"
,
ServiceBase
.
getDaoName
(
MerchanttradeService
));
this
.
merchantaccountSve
=
system
.
getObject
(
"service.merchant.merchantaccountSve"
);
}
}
async
addMerchanttrades
(
params
)
{
async
addMerchanttrades
(
params
)
{
try
{
try
{
if
(
!
params
.
merchant_id
)
{
return
system
.
getResultFail
(
-
1
,
"请选择商户"
);
}
if
(
!
params
.
trade_time
)
{
return
system
.
getResultFail
(
-
1
,
"请选择交易时间"
);
}
if
(
!
params
.
amount
)
{
return
system
.
getResultFail
(
-
1
,
"请提供交易金额"
);
}
else
if
(
0
>
params
.
amount
)
{
return
system
.
getResultFail
(
-
1
,
"交易金额错误"
);
}
if
(
!
params
.
trade_voucher
)
{
return
system
.
getResultFail
(
-
1
,
"请上传交易凭证"
);
}
params
.
trade_type
=
1
;
//线下充值
params
.
pay_type
=
2
;
//线下支付
params
.
amount_type
=
1
;
//后入
params
.
trade_data_id
=
moment
().
format
(
"YYYYMMDDHHmmss"
);
params
.
amount
=
params
.
amount
*
100
;
var
accountamount
=
await
this
.
merchantaccountSve
.
findOne
({
merchant_id
:
params
.
merchant_id
})
params
.
available_amount
=
params
.
amount
;
params
.
balance_amount
=
params
.
amount
;
if
(
accountamount
)
{
params
.
available_amount
=
params
.
amount
+
accountamount
.
available_amount
;
params
.
balance_amount
=
params
.
available_amount
;
}
var
rtn
=
await
this
.
dao
.
create
(
params
);
return
system
.
getResultSuccess
(
rtn
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
e
);
console
.
log
(
e
);
return
system
.
getResultFail
();
return
system
.
getResultFail
();
...
@@ -16,7 +47,27 @@ class MerchanttradeService extends ServiceBase {
...
@@ -16,7 +47,27 @@ class MerchanttradeService extends ServiceBase {
async
merchanttradesOfList
(
params
)
{
async
merchanttradesOfList
(
params
)
{
try
{
try
{
var
currentPage
=
Number
(
params
.
currentPage
||
0
);
var
pageSize
=
Number
(
params
.
pageSize
||
10
);
var
where
=
{};
if
(
params
.
merchant_id
)
{
where
.
merchant_id
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
merchant_id
};
}
where
.
trade_type
=
{
[
this
.
db
.
Op
.
eq
]:
1
};
this
.
addWhereTime
(
where
,
'created_at'
,
params
.
beginTime
,
params
.
entTime
,
true
);
var
orderby
=
[[
"id"
,
'desc'
]];
var
attributes
=
[
`id`
,
`trade_time`
,
`amount`
,
`audit_status`
,
`audit_remark`
];
var
page
=
await
this
.
getPageList
(
currentPage
,
pageSize
,
where
,
orderby
,
attributes
);
if
(
page
&&
page
.
rows
)
{
for
(
var
row
of
page
.
rows
)
{
this
.
handleDate
(
row
,
[
"trade_time"
],
null
);
}
}
return
system
.
getResultSuccess
(
page
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
e
);
console
.
log
(
e
);
return
system
.
getResultFail
();
return
system
.
getResultFail
();
...
@@ -25,7 +76,64 @@ class MerchanttradeService extends ServiceBase {
...
@@ -25,7 +76,64 @@ class MerchanttradeService extends ServiceBase {
async
auditMerchanttrade
(
params
)
{
async
auditMerchanttrade
(
params
)
{
try
{
try
{
if
(
!
params
.
id
)
{
return
system
.
getResultFail
(
-
1
,
"请提供ID"
);
}
if
(
params
.
audit_status
==
0
)
{
return
system
.
getResultFail
(
-
1
,
"请选择审核状态"
);
}
if
(
params
.
audit_status
==
2
&&
!
params
.
audit_remark
)
{
return
system
.
getResultFail
(
-
1
,
"请输入失败原因"
);
}
var
rtn
=
await
this
.
dao
.
update
(
params
);
var
trades
=
await
this
.
dao
.
findById
(
params
.
id
);
var
account
=
await
this
.
merchantaccountSve
.
findOne
({
merchant_id
:
trades
.
merchant_id
});
if
(
account
&&
params
.
audit_status
==
1
)
{
this
.
merchantaccountSve
.
addtomerchantrmb
(
trades
.
merchant_id
,
trades
.
amount
);
}
else
{
await
this
.
merchantaccountSve
.
create
({
merchant_id
:
trades
.
merchant_id
,
balance_amount
:
trades
.
amount
,
available_amount
:
trades
.
amount
});
}
return
system
.
getResultSuccess
(
rtn
);
}
catch
(
e
)
{
console
.
log
(
e
);
return
system
.
getResultFail
();
}
}
async
merchanttradesOfListAll
(
params
)
{
try
{
var
currentPage
=
Number
(
params
.
currentPage
||
0
);
var
pageSize
=
Number
(
params
.
pageSize
||
10
);
var
where
=
{};
if
(
params
.
merchant_id
)
{
where
.
merchant_id
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
merchant_id
};
}
if
(
params
.
amount_type
)
{
where
.
amount_type
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
amount_type
};
}
this
.
addWhereTime
(
where
,
'created_at'
,
params
.
beginTime
,
params
.
entTime
,
true
);
var
orderby
=
[[
"id"
,
'desc'
]];
var
attributes
=
[];
var
page
=
await
this
.
getPageList
(
currentPage
,
pageSize
,
where
,
orderby
,
attributes
);
if
(
page
&&
page
.
rows
)
{
for
(
var
row
of
page
.
rows
)
{
this
.
handleDate
(
row
,
[
"trade_time"
],
null
);
}
}
return
system
.
getResultSuccess
(
page
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
e
);
console
.
log
(
e
);
return
system
.
getResultFail
();
return
system
.
getResultFail
();
...
...
esign-sve-merchant/app/config/localsettings.js
View file @
4be6526d
...
@@ -14,11 +14,11 @@ var settings={
...
@@ -14,11 +14,11 @@ var settings={
// port: 3306,
// port: 3306,
host
:
'43.247.184.35'
,
host
:
'43.247.184.35'
,
port
:
8899
,
port
:
8899
,
timezone
:
'+08:00'
,
dialect
:
'mysql'
,
dialect
:
'mysql'
,
operatorsAliases
:
false
,
operatorsAliases
:
false
,
pool
:
{
pool
:
{
max
:
5
,
max
:
100
,
min
:
0
,
min
:
0
,
acquire
:
90000000
,
acquire
:
90000000
,
idle
:
1000000
idle
:
1000000
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment