|
@@ -46,7 +46,6 @@ const orderDetail = {
|
|
|
status: { type: String, required: false, zh: '订单状态' }, // 字典:order_process
|
|
|
remarks: { type: String, required: false, zh: '订单备注' }, //
|
|
|
type: { type: String, required: false, default: '0', zh: '订单类型' }, // 字典:order_type
|
|
|
- group: { type: String, required: false, zh: '所属团', ref: 'Group.Group' }, //
|
|
|
out_bill: { type: String, required: false, default: '1', zh: '是否出账' }, // 字典:tf
|
|
|
inviter: { type: String, required: false, zh: '推荐商品人', ref: 'User.User' }, // 返现部分
|
|
|
transport_type: { type: String, required: false, zh: '快递类型' }, // 字典:transport_type
|
|
@@ -63,7 +62,6 @@ schema.index({ buy_time: 1 });
|
|
|
schema.index({ pay_time: 1 });
|
|
|
schema.index({ status: 1 });
|
|
|
schema.index({ type: 1 });
|
|
|
-schema.index({ group: 1 });
|
|
|
schema.index({ out_bill: 1 });
|
|
|
schema.index({ inviter: 1 });
|
|
|
schema.index({ transport_type: 1 });
|