Commit 08cb8045 by 王昆

gsb

parent 6e68a03f
......@@ -76,7 +76,7 @@ class IborderbaseService extends ServiceBase {
payType: params.payType,
payStatus: "10",
};
payment = await this.paymentSve.create(payment);
payment = await this.paymentSve.create(payment, t);
params.orderpay_id = payment.id;
}
// 将id赋值
......
......@@ -153,8 +153,8 @@ class ServiceBase {
async delete(qobj) {
return this.dao.delete(qobj);
}
async create(qobj) {
return this.dao.create(qobj);
async create(qobj, t) {
return this.dao.create(qobj, t);
}
async update(qobj, tm = null) {
return this.dao.update(qobj, tm);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment