@@ -15,7 +15,8 @@ class TransactionController extends Controller {
async findTransactionList() {
const res = await this.service.findTransactionList(this.ctx.request.body);
- this.ctx.ok({ ...res });
+ // this.ctx.ok({ ...res });
+ this.ctx.ok({ res });
}