// 注释是表名 // achievement const achievement = [ { index: 1, field: 'name', zh: '名称' }, { index: 2, field: 'industry', zh: '所属产业' }, { index: 3, field: 'patent', zh: '专利号' }, { index: 4, field: 'name', zh: '名称' }, { index: 5, field: 'attribute', type: 'dict', code: 'attribute', zh: '属性' }, { index: 6, field: 'sell', type: 'dict', code: 'sell', zh: '出让方式' }, { index: 7, field: 'mature', type: 'dict', code: 'mature', zh: '成熟度' }, { index: 8, field: 'field', type: 'dict', code: 'field', zh: '行业领域' }, { index: 9, field: 'technology', type: 'dict', code: 'technology', zh: '技术分类' }, { index: 10, field: 'area', type: 'area', zh: '地区' }, { index: 10, field: 'money', zh: '参考价格' }, { index: 11, field: 'time', type: 'date', zh: '发布时间' }, { index: 12, field: 'source', zh: '项目来源' }, { index: 13, field: 'person', zh: '负责人' }, { index: 14, field: 'tel', zh: '联系电话' }, { index: 15, field: 'brief', zh: '简介' }, ]; // project const project = [ { index: 1, field: 'name', zh: '名称' }, { index: 2, field: 'industry', zh: '所属产业' }, { index: 3, field: 'time', type: 'date', zh: '发布时间' }, { index: 4, field: 'type', type: 'dict', code: 'industry', zh: '行业分类' }, { index: 5, field: 'maturity', type: 'dict', code: 'projectMaturity', zh: '成熟度' }, { index: 6, field: 'skill', type: 'dict', code: 'technology', zh: '技术类型' }, { index: 7, field: 'field', type: 'dict', code: 'field', zh: '行业领域' }, { index: 8, field: 'cooperate', type: 'dict', code: 'projectType', zh: '合作类型' }, { index: 9, field: 'area', type: 'area', zh: '地区' }, { index: 10, field: 'main', zh: '项目主体' }, { index: 11, field: 'progress', zh: '项目进展' }, { index: 12, field: 'main', zh: '项目主体' }, { index: 13, field: 'track_unit', zh: '跟踪支持单位' }, { index: 14, field: 'source', zh: '项目来源' }, { index: 15, field: 'brief', zh: '简介' }, ]; // demand const demand = [ { index: 1, field: 'name', zh: '名称' }, { index: 2, field: 'industry', zh: '所属产业' }, { index: 3, field: 'start_time', type: 'date', zh: '开始时间' }, { index: 4, field: 'end_time', type: 'date', zh: '结束时间' }, { index: 5, field: 'money', type: 'date', zh: '价格' }, { index: 6, field: 'type', type: 'dict', code: 'type', zh: '类型' }, { index: 7, field: 'field', type: 'dict', code: 'field', zh: '行业领域' }, { index: 8, field: 'urgent', type: 'dict', code: 'urgent', zh: '需求紧急度' }, { index: 9, field: 'method', type: 'dict', code: 'method', zh: '合作方式' }, { index: 10, field: 'area', type: 'area', zh: '地区' }, { index: 11, field: 'company', zh: '所属企业' }, { index: 12, field: 'company_brief', zh: '企业简况' }, { index: 13, field: 'contacts', zh: '联系人' }, { index: 14, field: 'tel', zh: '联系电话' }, { index: 15, field: 'year', zh: '年份' }, { index: 16, field: 'month', zh: '月份' }, { index: 17, field: 'tec_name', zh: '技术需求名称' }, { index: 18, field: 'question', zh: '待解决问题' }, { index: 19, field: 'brief', zh: '简介' }, ]; // supply const supply = [ { index: 1, field: 'name', zh: '名称' }, { index: 2, field: 'industry', zh: '所属产业' }, { index: 3, field: 'start_time', type: 'date', zh: '开始时间' }, { index: 4, field: 'end_time', type: 'date', zh: '结束时间' }, { index: 5, field: 'money', type: 'date', zh: '价格' }, { index: 6, field: 'type', type: 'dict', code: 'type', zh: '类型' }, { index: 7, field: 'field', type: 'dict', code: 'field', zh: '行业领域' }, { index: 8, field: 'urgent', type: 'dict', code: 'urgent', zh: '需求紧急度' }, { index: 9, field: 'method', type: 'dict', code: 'method', zh: '合作方式' }, { index: 10, field: 'area', type: 'area', zh: '地区' }, { index: 11, field: 'source', zh: '项目来源' }, { index: 19, field: 'brief', zh: '简介' }, ]; // company const company = [ { index: 1, field: 'name', zh: '名称' }, { index: 2, field: 'industry', zh: '所属产业' }, { index: 3, field: 'code', zh: '企业统一信用代码名称' }, { index: 3, field: 'representative', zh: '法定代表人' }, { index: 3, field: 'email', zh: '电子邮箱' }, { index: 3, field: 'number', zh: '员工人数' }, { index: 3, field: 'register', zh: '注册资本' }, { index: 3, field: 'create_time', type: 'date', zh: '成立时间' }, { index: 6, field: 'pattern', type: 'dict', code: 'pattern', zh: '企业类型' }, { index: 7, field: 'scale', type: 'dict', code: 'scale', zh: '企业规模' }, { index: 7, field: 'type', type: 'dict', code: 'type', zh: '所属行业' }, { index: 10, field: 'area', type: 'area', zh: '地区' }, { index: 11, field: 'phone', zh: '联系电话' }, { index: 12, field: 'address', zh: '地址' }, { index: 13, field: 'products', zh: '产品' }, { index: 19, field: 'brief', zh: '简介' }, ]; module.exports = { achievement, project, demand, supply, company, };