人力资源
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
529 B

const ENV_SY_POOL = { //商用数据库配置
user: 'FashionAdmin',
host: '10.8.40.210',
database: 'HRM',
password: '123456',
port: 5432
}
const ENV_CS_POOL = { //生产环境数据库配置
user: 'FashionAdmin',
host: '10.8.30.166',
database: 'HRM',
password: '123456',
port: 5432
}
const PRO_POOL = { //研发自测用
user: 'postgres',
host: '10.8.16.184',
database: 'HRM',
password: '123456',
port: 5432
}
module.exports = {
ENV_SY_POOL, ENV_CS_POOL, PRO_POOL
}