exports.main = async (event, context) => {
// return db.collection('collected_usedGoods').add({//写数据
// // data 字段表示需新增的 JSON 数据
// data: event.data
// }).then(res => {
// 删除数据
// // db.collection('usedGoods_list').where({
// // _id: event.id
// // }).remove().then()
// })
return event.id
}