|
let res = await this.model.findOne({ buyer_id, seller_id });
|
|
let res = await this.model.findOne({ buyer_id, seller_id });
|
|
if (!res) res = await this.model.create({ buyer_id, seller_id, buyer_name, seller_name });
|
|
if (!res) res = await this.model.create({ buyer_id, seller_id, buyer_name, seller_name });
|