dock.js 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  4. const { Secret } = require('naf-framework-mongoose/lib/model/schema');
  5. // const image = new Schema({
  6. // });
  7. // image.index({ id: 1 });
  8. // 产品
  9. const goods = new Schema({
  10. totaltype: { type: String, required: false, maxLength: 5 }, // 产品类型
  11. name: { type: String, required: false, maxLength: 200 }, // 产品名称
  12. product_type_id: { type: Object, required: false, maxLength: 200 }, // 类型
  13. introduction: { type: String, required: false, maxLength: 1000 }, // 产品简介
  14. phase: { type: String, required: false, maxLength: 200 }, // 研发阶段
  15. price: { type: String, required: false, maxLength: 200 }, // 产品单价
  16. priceunit: { type: String, required: false, maxLength: 200 }, // 产品单位
  17. image: { type: [ Object ], required: false }, // 产品图片
  18. field: { type: String, maxLength: 200 }, // 所属领域
  19. scope: { type: String, maxLength: 200 }, // 服务范围
  20. coopermode: { type: String, maxLength: 200 }, // 合作方式
  21. business: { type: String, maxLength: 200 }, // 交易方式
  22. budget: { type: String, maxLength: 200 }, // 投入预算
  23. end_date: { type: String, maxLength: 200 }, // 需求截止日期
  24. difficult_problem: { type: String, maxLength: 500 }, // 难题或瓶颈问题
  25. demand: { type: String, maxLength: 500 }, // 企业解决技术需求已具备的条件
  26. company: { type: String, maxLength: 200 }, // 企业名称
  27. address: { type: String, maxLength: 200 }, // 企业地址
  28. team: { type: String, maxLength: 200 }, // 技术团队情况
  29. property: { type: String, maxLength: 200 }, // 知识产权情况
  30. mature: { type: String, maxLength: 200 }, // 技术成熟度
  31. coopercompany: { type: String, maxLength: 200 }, // 是否拟有合同
  32. other: { type: String, maxLength: 200 }, // 其他需求
  33. contact_user: { type: String, maxLength: 200 }, // 联系人
  34. contact_tel: { type: String, maxLength: 200 }, // 联系电话
  35. dockStatus: { type: String, default: '0', maxLength: 5 }, // 0未审核,1已通过,2已拒绝
  36. });
  37. goods.index({ id: 1 });
  38. // 申请用户
  39. const apply = new Schema({
  40. user_id: { type: String, required: true, maxLength: 200 }, // 用户id
  41. user_name: { type: String, required: true, maxLength: 200 }, // 用户名称
  42. goodsList: { type: [ goods ], default: [] }, // 产品列表
  43. contact_tel: { type: String, required: false, maxLength: 200 }, // 联系人电话
  44. apply_time: { type: String, maxLength: 200 }, // 申请时间
  45. role: { type: String, maxLength: 200 }, // 申请人类型
  46. status: { type: String, default: '0', maxLength: 1 }, // 申请状态 (0未审核;1已通过;2已拒绝)
  47. });
  48. apply.index({ id: 1 });
  49. apply.index({ userid: 1 });
  50. // vip用户
  51. const vipuser = new Schema({
  52. uid: { type: String, required: false, maxLength: 200 }, // 用户id
  53. vipname: { type: String, required: false, maxLength: 200 }, // 用户名称
  54. vipphone: { type: String, required: false, maxLength: 200 }, // 联系人手机
  55. role: { type: String, required: false, maxLength: 200 }, // 申请人类型
  56. company: { type: String, required: false, maxLength: 500 }, // 单位名称
  57. email: { type: String, required: false, maxLength: 20 }, // 郵箱
  58. content: { type: String, required: false }, // 内容
  59. });
  60. vipuser.index({ id: 1 });
  61. const Dock = {
  62. room_id: { type: String, required: true, maxLength: 10 }, // 房间号
  63. password: { type: Secret, select: false }, // 密码
  64. title: { type: String, required: false, maxLength: 200 }, // 对接会标题
  65. desc: { type: String, maxLength: 1000 }, // 简介
  66. status: { type: String, default: '0', maxLength: 1 }, // 状态:0准备中;1已开始;2已结束
  67. start_time: { type: String, required: true, maxLength: 200 }, // 开始时间
  68. end_time: { type: String, required: true, maxLength: 200 }, // 结束时间
  69. join_end: { type: String, required: true, maxLength: 200 }, // 报名截止时间
  70. apply: { type: [ apply ], default: [] }, // 申请用户
  71. user_id: { type: String, required: false, maxLength: 200 }, // 创建人id
  72. province: { type: String, required: false }, // 省
  73. place: { type: String, required: false }, // 市
  74. file_path: { type: String, required: false }, // 视频路径
  75. adminuser: { type: String, required: false, maxLength: 200 }, // 用户姓名
  76. phone: { type: String, required: false, maxLength: 200 }, // 电话
  77. vipuser: { type: [ vipuser ], default: [] }, // vip用户
  78. role: { type: String, default: '3', maxLength: 20 }, // 展会角色
  79. // is_allowed: { type: String, default: '0', maxLength: 1 }, // 0未审核;1已允许;2已拒绝
  80. // reason: { type: String, required: false, maxLength: 200 }, // 拒绝理由
  81. // roomname: { type: String, required: false }, // 房间名称
  82. // uid: { type: String, required: false, maxLength: 200 }, // 所属用户
  83. openid: { type: String, maxLength: 200 }, // openid
  84. };
  85. const schema = new Schema(Dock, { toJSON: { virtuals: true } });
  86. schema.index({ id: 1 });
  87. schema.plugin(metaPlugin);
  88. module.exports = app => {
  89. const { mongoose } = app;
  90. return mongoose.model('dock', schema, 'dock');
  91. };