Commit 1da4bce6 by zhangzhencai

no message

parent 11a6526a
......@@ -53,10 +53,10 @@ function analysisParamToWhere(param, column) {
case "%in%":
where[key][Op.in] = param[key]["%in%"];
break;
case "%notIn%":
case "%notIn%"://不在范围内数据
where[key][Op.notIn] = param[key]["%notIn%"];
break;
case "%ne%":
case "%ne%"://不等于
where[key][Op.ne] = param[key]["%ne%"];
break;
}
......
......@@ -27,6 +27,11 @@ export const TablesConfig = [
totalArea: {type:Sequelize.STRING(255)}, //总面积
zaifuArea: {type:Sequelize.STRING(255)}, //在孵面积
ziyonArea: {type:Sequelize.STRING(255)}, //自用面积
parkArea: {type:Sequelize.STRING(255)},//新增园区面积
industrialScale: {type:Sequelize.STRING(255)},//新增产业规模
totalAssetInvestmentAmount:{type:Sequelize.STRING(255)},//新增总资产投入金额
numberOfInstitutionsIntroduced:{type:Sequelize.STRING(255)},//新增引入机构数量
introduceInstitutionalInvestment:{type:Sequelize.STRING(255)}//新增引入机构投资
},
association: []
},
......@@ -46,7 +51,7 @@ export const TablesConfig = [
state: {type:Sequelize.INTEGER}, //孵化状态 【枚举】
virtualCause: {type:Sequelize.STRING(255)}, //虚拟孵化原因
virtualCauseDes: {type:Sequelize.STRING(255)}, //虚拟孵化描述
moveOutType: {type:Sequelize.STRING(50)}, //迁出类型
moveOutType: {type:Sequelize.INTEGER}, //迁出类型 毕业迁出,非毕业迁出
moveOutTrace: {type:Sequelize.STRING(255)}, //迁出去向
moveOutCause: {type:Sequelize.STRING(255)}, //迁出原因
moveOutTime: {type:Sequelize.DATE}, //迁出时间
......@@ -100,7 +105,8 @@ export const TablesConfig = [
pwd: {type:Sequelize.STRING(255), allowNull:false}, //密码
eId: {type:Sequelize.STRING(255), allowNull:false}, //关联企业id
token: {type:Sequelize.STRING(255), allowNull:true}, //token
tokenMs:{ type:Sequelize.DATE, allowNull:true}
tokenMs:{ type:Sequelize.DATE, allowNull:true},
// email: {type:Sequelize.STRING(255), allowNull:true},//邮箱
},
association: []
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment