Commit f824e322 by Zllgogo

no message

parent 9651cfab
......@@ -23,13 +23,16 @@
"nodemailer": "^6.1.1",
"qs": "^6.11.0",
"request": "^2.88.0",
"sequelize": "^6.32.1",
"sequelize": "^6.37.7",
"svg-captcha": "^1.3.12",
"tencentcloud-sdk-nodejs": "^4.0.562",
"ws": "^5.2.2",
"xml2js": "^0.4.23"
},
"devDependencies": {},
"devDependencies": {
"patch-package": "^8.0.0",
"typescript": "^5.8.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
......
......@@ -4,10 +4,11 @@
<mysqldb>
<!-- 本地mysql配置 -->
<mysqlHost>192.168.0.105</mysqlHost>
<!-- <mysqlHost>127.0.0.1</mysqlHost> -->
<mysqlPort>3306</mysqlPort>
<mysqlUser>root</mysqlUser>
<mysqlPwd>123456</mysqlPwd>
<dataBase>yuyi</dataBase>.
<dataBase>yuyi</dataBase>
<!-- 服务器mysql配置 -->
<!-- <mysqlHost>127.0.0.1</mysqlHost>
<mysqlPort>3306</mysqlPort>
......
......@@ -406,6 +406,7 @@ export const TablesConfig = [
target:{type:Sequelize.STRING(255)},//标签
closeTimeMs:{type:Sequelize.DATE},//关闭时间
isPermanent:{type:Sequelize.INTEGER},//是否永久有效 0=否 1=是
policyType:{type:Sequelize.INTEGER},//类型 1=财政补贴 2=资质申报 3=政策扶持
},
association: []
},
......@@ -486,6 +487,7 @@ export const TablesConfig = [
{type:"hasMany", check:"dishonesty", goreignKey:"eId"},
{type:"hasMany", check:"break_the_law", goreignKey:"eId"},
{type:"hasMany", check:"overseas_investment", goreignKey:"eId"},
{type:"hasMany", check:"approval_history", goreignKey:"eId"},
]
},
//新加表
......@@ -805,5 +807,21 @@ export const TablesConfig = [
},
association: []
},
{
tableNamecn:'入孵申请审批表',
tableName:'approval_history',
schema:{
approvalId:{
type:Sequelize.STRING(255),//表示属性的数据类型
allowNul1:false,//表示当前列是否允许为空,false表示该列不能为空
primaryKey:true,//表示主键
unique:true ,//表示该列的值必须唯一
},
eId:{type:Sequelize.STRING(255),allowNull:false},//关联企业id
changeType:{type:Sequelize.INTEGER},//审批类型:1=入申请 2=入孵材料上传
changestate:{type:Sequelize.INTEGER},//操作审核状态 =否 1=是 2-驳回 3=重新提交
createTimeMs :{type:Sequelize.DATE},//日志时间
},
association:[]
},
];
\ No newline at end of file
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