fix: fundList模型定义

This commit is contained in:
chaosBreaking
2019-09-08 22:57:55 +08:00
parent 735d024193
commit ceec223c1d

View File

@@ -20,7 +20,10 @@ const FundSchema = new mongoose.Schema({
},
// fundList 为充值的矿晶的一系列数值,用于计算收益
// fund = 矿晶单位KG
fundList: [{}],
fundList: {
type: [],
default: []
},
// fundSum, 用户充值的总usdt数
fundSum: {
type: Number,