|
@@ -20,6 +20,9 @@ const patenttrans = {
|
|
|
requirementdesc: { type: String }, // 技术说明
|
|
|
expect: { type: String }, // 预期目标
|
|
|
present: { type: String }, // 需求现状
|
|
|
+ on_obligee: { type: String }, // 变更前专利权人
|
|
|
+ on_afterobligee: { type: String }, // 变更后专利权人
|
|
|
+ transfer_date: { type: String }, // 专利权转移日期
|
|
|
condition: { type: String }, // 合作条件及要求
|
|
|
is_contract: { type: String }, // 0:线下合同,1:线上合同
|
|
|
contract: { type: Object }, // 线上合同
|
|
@@ -41,6 +44,9 @@ schema.index({ phone: 1 });
|
|
|
schema.index({ email: 1 });
|
|
|
schema.index({ budget: 1 });
|
|
|
schema.index({ type: 1 });
|
|
|
+schema.index({ on_obligee: 1 });
|
|
|
+schema.index({ transfer_date: 1 });
|
|
|
+schema.index({ transfer_date: 1 });
|
|
|
schema.index({ is_report: 1 });
|
|
|
schema.index({ status: 1 });
|
|
|
schema.index({ isdel: 1 });
|