Commit 21a2962c by Zllgogo

no message

parent 6ca97a11
...@@ -26,6 +26,7 @@ export const TablesConfig = [ ...@@ -26,6 +26,7 @@ export const TablesConfig = [
synopsis: {type:Sequelize.STRING(255)}, //简介 synopsis: {type:Sequelize.STRING(255)}, //简介
totalArea: {type:Sequelize.STRING(255)}, //总面积 totalArea: {type:Sequelize.STRING(255)}, //总面积
zaifuArea: {type:Sequelize.STRING(255)}, //在孵面积 zaifuArea: {type:Sequelize.STRING(255)}, //在孵面积
rentRate: {type:Sequelize.STRING(255)},//后台填报-出租率
ziyonArea: {type:Sequelize.STRING(255)}, //自用面积 ziyonArea: {type:Sequelize.STRING(255)}, //自用面积
parkArea: {type:Sequelize.STRING(255)},//新增园区面积 parkArea: {type:Sequelize.STRING(255)},//新增园区面积
enterpriseNum: {type:Sequelize.INTEGER},//新增企业数量 enterpriseNum: {type:Sequelize.INTEGER},//新增企业数量
...@@ -505,8 +506,48 @@ export const TablesConfig = [ ...@@ -505,8 +506,48 @@ export const TablesConfig = [
{type:"hasMany", check:"break_the_law", goreignKey:"eId"}, {type:"hasMany", check:"break_the_law", goreignKey:"eId"},
{type:"hasMany", check:"overseas_investment", goreignKey:"eId"}, {type:"hasMany", check:"overseas_investment", goreignKey:"eId"},
{type:"hasMany", check:"approval_history", goreignKey:"eId"}, {type:"hasMany", check:"approval_history", goreignKey:"eId"},
{type:"hasMany", check:"info_enter", goreignKey:"eId"},
{type:"hasMany", check:"info_operation_promotion", goreignKey:"eId"},
] ]
}, },
//孵化器入驻信息表
{
tableNameCn: '入驻信息表',
tableName: 'info_enter',
schema: {
info_enterId: {
type:Sequelize.STRING(255), //表示属性的数据类型
allowNull:false, //表示当前列是否允许为空, false表示该列不能为空
primaryKey:true, //表示主键
unique:true //表示该列的值必须唯一
},
building: {type: Sequelize.STRING(255)},//楼号(1,3,4)
occupancyRate: {type: Sequelize.STRING(255)},//入驻率
enteredEnterprises: {type: Sequelize.STRING(255)},//入驻企业
},
association: []
},
//运营推广信息表
{
tableNameCn: '运营推广信息表',
tableName: 'info_operation_promotion',
schema: {
opId: {
type:Sequelize.STRING(255), //表示属性的数据类型
allowNull:false, //表示当前列是否允许为空, false表示该列不能为空
primaryKey:true, //表示主键
unique:true //表示该列的值必须唯一
},
onlinePromotion:{type: Sequelize.STRING(255)},//线上推广
tiktok:{type: Sequelize.STRING(255)},//抖音
theLittleRedBook:{type: Sequelize.STRING(255)},//小红书
videoNumber:{type: Sequelize.STRING(255)},//视频号
offlinePromotion:{type: Sequelize.STRING(255)},//线下推广
eventPromotion:{type: Sequelize.STRING(255)},//活动宣讲
tripartiteInstitutionalCooperation:{type: Sequelize.STRING(255)},//三方机构合作
},
association: []
},
//新加表 //新加表
{ {
tableNameCn:'变更信息表', tableNameCn:'变更信息表',
......
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