Commit 9bff2398 authored by Hsinli's avatar Hsinli

addd

parent 12f7794a
Pipeline #8699 passed with stage
in 12 seconds
......@@ -116,7 +116,7 @@ module.exports = app => {
const where = data.where;
const params = data.params;
try {
return res = await Collection.update(params, { where: where })
return await Collection.update(params, { where: where })
} catch (error) {
throw (error);
}
......
......@@ -320,7 +320,7 @@ module.exports = app => {
const where = data.where;
const params = data.params;
try {
return res = await NewHouse.update(params, { where: where })
return await NewHouse.update(params, { where: where })
} catch (error) {
throw (error);
}
......
......@@ -131,7 +131,7 @@ module.exports = app => {
const where = data.where;
const params = data.params;
try {
return res = await Order.update(params, { where: where })
return await Order.update(params, { where: where })
} catch (error) {
throw (error);
}
......
......@@ -112,7 +112,7 @@ module.exports = app => {
const where = data.where;
const params = data.params;
try {
return res = await SearchHistory.update(params, { where: where })
return await SearchHistory.update(params, { where: where })
} catch (error) {
throw (error);
}
......
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